@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 moreThe @ConfigurationProperties annotation is used in Spring Boot to bind external application properties to a class or bean. This allows[…]
Read moreSpring Boot Dev Tools is a module within the Spring Boot framework that provides a set of tools to help[…]
Read moreSpring profiles allow you to configure different parts of your application based on the environment it is running in. This[…]
Read moreIn Spring Boot, conditional annotations allow you to conditionally apply configurations or beans based on certain conditions. These conditions are[…]
Read moreIn this article, we will discuss the the importance of required = false attribute in @Autowired ie., @Autowired(required = false).[…]
Read moreIn this article we will learn about the @Primary Annotation in Spring with a very simple example. Let’s first try[…]
Read moreWe can make a bean ineligible for auto wiring by specifying the autowireCandidate attribute as false in the Bean annotation[…]
Read morePlease 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