Browse
Spring Framework
8 posts in Spring Framework.
- Mar 6 →
Spring Bean Naming Conventions
Spring Bean Naming Conventions
- Mar 5 →
Guide to Using Spring PropertySource
PropertySource is an interface in the Spring Framework that provides a source for properties (configurations). It allows loading and accessing property values within an application, which are typically used to configure the application's behavior.
- Feb 29 →
Spring Events User Guide
Spring events are a mechanism in the Spring framework for implementing a publish-subscribe model event notification mechanism in applications. We can implement simple business decoupling based on Spring events. This article will introduce the usage and relevant examples of Spring Event based on SpringFramework5.3.32 version.
- Jan 11 →
Implementing Custom Validators in the Spring Framework
Implementing Custom Validators in the Spring Framework
- Jan 8 →
Bean Annotation in the Spring Framework
In the Spring Framework, the @Bean annotation is a powerful tool used for defining and configuring Beans. However, effectively using the @Bean annotation requires understanding its advanced properties and limitations. This article aims to comprehensively analyze the advanced properties of the @Bean annotation and discuss its key limitations to ensure the robustness and effectiveness of Spring applications.
- Jan 6 →
Spring Bean Instantiation Techniques
Spring Bean Instantiation
- Jan 6 →
Spring Bean Singleton and Prototype
Spring Bean Singleton and Prototype
- Jan 4 →
Spring BeanDefinition Usage Guide
In the Spring framework, BeanDefinition is a core interface used to define the configuration information of a bean. It includes various property settings, constructor arguments, other special configurations, and the actual implementation class of the bean.