Spring
Configuring CORS with Spring Boot and Spring Security
Cross-Origin Resource Sharing (CORS) is an HTTP-header-based mechanism that allows servers to explicitly allowlist certain origins and helps bypass the same-origin policy.
Read moreReactive Architecture with Spring Boot
Microservices are meant to be adaptable, scalable, and highly performant so that they can be more competitive to the other products in the market.
Read moreGetting Started with Spring Boot
In this article, we will build a production-grade application with Spring Boot. After understanding the use case and requirements, we will implement the application layer by layer.
Read moreGetting Started with Spring WebFlux
Most traditional applications deal with blocking calls or, in other words, synchronous calls. This means that if we want to access a particular resource in a system with most of the threads being busy, then the application would block the new one or wait until the previous threads complete processing its requests.
Read moreCreate Command-line Applications with Spring Shell
Spring Shell allows us to build a command line (shell) application using the Spring framework and all the advantages it provides.
Read more