What is a Spring Beans? In Spring, the objects that form your application’s backbone and are managed by the Spring IoC container are called beans.
Category: Java
What is Dependency Injection (DI) in Spring? Dependency injection (DI) is a design pattern that promotes loose coupling between classes by injecting dependencies from outside
What is Spring AOP? Spring AOP (Aspect Oriented Programming) is a programming pattern used to increase modularity by allowing the separation of the cross-cutting concern.
How to handle Logging in Spring Boot? We have seen what Spring Boot is and how we can create Simple APIs in Spring Boot. Now
What is a Spring Actuator? The Spring Actuator is used to monitor and manage the Spring web application. We can use it to monitor and
What is swagger in SpringBoot? Swagger in SpringBoot allows you to describe the structure of your APIs so that machines can read them. The ability
What are the different types of request mappings in Spring Boot? We have seen how to start with spring boot in earlier. In this blog,