Spring_2_Spring中lazy-init和scope属性

1)springTest类:

public class springTest {
	@Test
	public void instanceSpring() {
		AbstractApplicationContext ctx = new 		
<span style="white-space:pre">			</span>ClassPathXmlApplicationContext("springXml/beans.xml");
<span style="white-space:pre">		</span>// 该实例输出结果为true:说明Spring容器中一个bean定义只有一个对象实例
		// 当bean的配置文件中设置scope="prototype"时,输出为false
		// 说明:每次生成一个新的bean对象
<span style="white-space:pre">	</span>PersonService personService1 = (PersonService)ctx.getBean("personservice1");
	PersonService personService2 = (PersonService)ctx.getBean("personservice1");
<span style="white-space:pre">	</span>System.out.println(personService1 == personService2);
	}
}

2)Bean的XML配置文件:

<span style="font-size:14px;"><strong><?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-2.5.xsd">

	<!-- 使用类构造器实例化Bean 推荐使用 -->
	<!-- Spring容器中一个bean定义只有一个对象实例,
  默认情况会在容器启动时初始化bean,
		  但可以在 Bean节点中指定lazy-init="ture", 
		  这时只有第一次获取bean才会初始化bean. 
		  如果想对所有的bean都实行延迟初始化,
		  可以在根节点beans设置default-lazy-init="true".
		  如果设置scope="prototype",则每次都会生成一个新的bean对象.
		 如果设置init-method="methodName",实例化对象时会调用该方法.
	-->   
<bean id="personService1" class="springDao.PersonServiceBean" 
		scope="prototype" init-method="init" ></bean>
</beans></strong></span>





评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值