Spring-03-懒加载&多实例

spring的懒加载【lazy-init=“true”】
当我们启动spring容器时,创建对象,还没getBean()就调用了构造方法

xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://www.springframework.org/schema/beans
	http://www.springframework.org/schema/beans/spring-beans.xsd">
	
	<bean  id="iphone" class="spring03Test.Iphone" />
</beans>

测试类

public class Test01 {
	
	public static void main(String[] args) {
		ApplicationContext ac = new ClassPathXmlApplicationContext("spring03Test/applicationContext.xml");
	}
	
}

运行结果
在这里插入图片描述
启动加载的好处:一旦类有错误,容器启动即可发现;

设为“懒加载”
在配置bean的时候 后面加上 【lazy-init=“true”】

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://www.springframework.org/schema/beans
	http://www.springframework.org/schema/beans/spring-beans.xsd">
	
	<bean  id="iphone" class="spring03Test.Iphone" lazy-init="true" />

</beans>

运行结果为
在这里插入图片描述

非单例【scope=“prototype”】
--------Spring容器中的对象,默认单例(scope=“singleton”),可以减轻JVM管理对象的负担。
设置scope=“prototype”,改为多实例,此时自动变为懒加载;

因为非单例时,一旦提前创建对象,不知道要建多少个,所以就不提前创建了(而且此时不调用destroy-method指定的方法).

xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://www.springframework.org/schema/beans
	http://www.springframework.org/schema/beans/spring-beans.xsd">
	
	<bean  id="iphone" class="spring03Test.Iphone"  />
	
	<bean id ="mi" class="spring03Test.MI" scope="prototype"/>
	
	

</beans>

测试类

public class Test01 {
	
	public static void main(String[] args) {
		ApplicationContext ac = new ClassPathXmlApplicationContext("spring03Test/applicationContext.xml");
		Iphone iphone1 =(Iphone) ac.getBean("iphone");
		System.out.println(iphone1);
		Iphone iphone2 =(Iphone) ac.getBean("iphone");
		System.out.println(iphone2);
		System.out.println(iphone1==iphone2);
		MI mi1 = (MI)ac.getBean("mi");
		System.out.println(mi1);
		MI mi2 = (MI)ac.getBean("mi");
		System.out.println(mi2);
		System.out.println(mi1==mi2);
	}
	
}


运行结果

在这里插入图片描述
从结果上来看,iphone1和iphone2是一个对象,mi1和mi2是两个对象,所以spring默认为单例

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值