


Briefly describe the default-lazy-init='true' configuration in java configuration
The following editor will bring you a brief discussion of the default-lazy-init parameters and lazy-init in spring. The editor thinks it’s pretty good, so I’ll share it with you now and give it as a reference. Let’s follow the editor and take a look.
There is a default-lazy-init="true" configuration on the root node in the spring configuration:
1, Spring's default-lazy-init parameter
This parameter indicates delayed loading, that is, the annotated bean will not be instantiated when the project is started unless starting the project Need to use, uninstantiated annotationObjectThe call is only injected when the program actually accesses the call
When spring starts, the default-lazy-init parameter defaults to false and will be loaded by default. The entire object instance graph, from initialization ACTION configuration, to service configuration, to dao configuration, to database connection, transactions, etc. This can reduce the load on the web server during runtime, but it is undoubtedly an extremely inefficient setting for developers.
spring provides the default-lazy-init attribute, its configuration form is as follows, in applicationContext.xml:
< beans default-lazy-init ="true" > ....... </beans>
In actual development, the default-lazy-init attribute can be set to true, which can greatly reduce the project startup time
2. The lazy-init and abstract attributes in Spring
1. lazy-init
<beans> <bean id="service1" type="bean路径" lazy-init="true"/> <bean id="service2" type="bean路径" lazy-init="false"> <property name="service1" ref="service1"/> </bean> </beans>
For the above two beans, one lazy-init attribute is true and the other is false. What is the difference?
When the IoC container starts, service2 will be instantiated, but service1 will not; but when the container instantiates service2, service1 is also instantiated. Why, because service2 needs it. In other words, for lazy-init="true" beans, the bean will not be instantiated when the IoC container starts. It will only be instantiated when the container needs to use it. Lazy-init is beneficial to container efficiency, and you can ignore unnecessary beans.
At the same time, we can use the lazy-init attribute in the corresponding bean for a specific module. lazy-init has a higher priority than default-lazy-init.
Spring annotations can be annotated on the class name using the @Lazy(false) annotation tag, which is equivalent to configuring the lazy-init attribute in the bean
2, abstract
<bean id="baseTxService" class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean" abstract="true"> </bean>
When bean abstract="true", the bean will not be instantiated
This is just to save startup time during the development process and deploy it to the actual environment , there is no need to set default-lazy-init to true. After all, it is not a common thing to deploy into the actual environment. Starting it for 1 minute each time is not a big problem, and it can improve server efficiency.
Of course, not all beans can set default-lazy-init to true. Lazy-init cannot be used for scheduler beans
[Related recommendations]
2. Geek Academy Java Video Tutorial
The above is the detailed content of Briefly describe the default-lazy-init='true' configuration in java configuration. For more information, please follow other related articles on the PHP Chinese website!

Start Spring using IntelliJIDEAUltimate version...

When using MyBatis-Plus or other ORM frameworks for database operations, it is often necessary to construct query conditions based on the attribute name of the entity class. If you manually every time...

Java...

How does the Redis caching solution realize the requirements of product ranking list? During the development process, we often need to deal with the requirements of rankings, such as displaying a...

Conversion of Java Objects and Arrays: In-depth discussion of the risks and correct methods of cast type conversion Many Java beginners will encounter the conversion of an object into an array...

Solutions to convert names to numbers to implement sorting In many application scenarios, users may need to sort in groups, especially in one...

Detailed explanation of the design of SKU and SPU tables on e-commerce platforms This article will discuss the database design issues of SKU and SPU in e-commerce platforms, especially how to deal with user-defined sales...

How to set the SpringBoot project default run configuration list in Idea using IntelliJ...


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Mac version
God-level code editing software (SublimeText3)

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Atom editor mac version download
The most popular open source editor