@Cacheable Annotation in Spring
Spring provides a caching abstraction that allows you to easily cache the results of method calls by simply annotating the[…]
Read moreAmplify your java knowledge with javagyansite
Spring provides a caching abstraction that allows you to easily cache the results of method calls by simply annotating the[…]
Read more
The @ConfigurationProperties annotation is used in Spring Boot to bind external application properties to a class or bean. This allows[…]
Read more
Spring Boot Dev Tools is a module within the Spring Boot framework that provides a set of tools to help[…]
Read more
Spring profiles allow you to configure different parts of your application based on the environment it is running in. This[…]
Read more
In Spring Boot, conditional annotations allow you to conditionally apply configurations or beans based on certain conditions. These conditions are[…]
Read more
In this article, we will discuss the the importance of required = false attribute in @Autowired ie., @Autowired(required = false).[…]
Read more
In this article we will learn about the @Primary Annotation in Spring with a very simple example. Let’s first try[…]
Read more
We can make a bean ineligible for auto wiring by specifying the autowireCandidate attribute as false in the Bean annotation[…]
Read more
Please first go through the below link for understanding of bean scopes in Spring framework before you delve further into[…]
Read more
@PropertySource provides a convenient and declarative mechanism for adding a PropertySource to Spring’s Environment. This is used in conjunction with[…]
Read more