Tag

#java

18 articles

Chronicle

18 posts

2024

12
  1. 02 Understanding Java Object Memory Layout This article provides a detailed introduction to the storage structure of Java objects in memory, discusses how to reasonably estimate the approximate memory space required for project operation through tools and theoretical knowledge, and deepens the understanding of the Java object memory structure.
  2. 03 Spring Bean Naming Conventions Spring Bean Naming Conventions
  3. 04 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.
  4. 05 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.
  5. 06 Implementing Custom Validators in the Spring Framework Implementing Custom Validators in the Spring Framework
  6. 07 Packaging XML Files into Java Classpath In Java project development, managing resource files such as XML configuration files is a common requirement. Especially when these resource files need to be in the same path as the compiled class files, correctly configuring the project becomes crucial. This article explores how to package XML files into the Java classpath in Maven projects and IntelliJ IDEA.
  7. 08 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.
  8. 09 Spring Bean Instantiation Techniques Spring Bean Instantiation
  9. 10 Spring Bean Singleton and Prototype Spring Bean Singleton and Prototype
  10. 11 New Features in Java 17 New features in Java 17
  11. 12 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.
  12. 13 Maven Dependency Scopes Introduction to Maven dependency scopes