spring中bean的lazy-init属性和default-lazy-init属性用法

Spring默认会立即创建并配置所有单例Bean,但通过`lazy-init`属性可实现延迟初始化,即在首次请求时才创建Bean。如果一个延迟初始化的Bean依赖于非延迟初始化的Bean,它仍会在启动时创建。`default-lazy-init`属性可全局设置Bean的延迟初始化。当`lazy-init`设为`true`,或`default-lazy-init`设为`true`时,Bean将在第一次使用时初始化。
摘要由CSDN通过智能技术生成

对于bean的lazy-init属性,官网给出的解释以及例子如下所示:

By default, ApplicationContext implementations eagerly create and configure all singleton beans as part of the initialization process. Generally, this pre-instantiation is desirable, because errors in the configuration or surrounding environment are discovered immediately, as opposed to hours or even days later. When this behavior is not desirable, you can prevent pre-instantiation of a singleton bean by marking the bean definition as being lazy-initialized. A lazy-initialized bean tells the IoC container to create a bean instance when it is first requested, rather than at startup.

In XML, this behavior is controlled by the lazy-init attribute on the <bean/> element, as the following example shows:

<b
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值