Bean的作用域介绍(Singleton与prototype)
Spring Bean作用域介绍:

singletonSpring  Ioc容器只会创建该Bean的唯一实例,所有的请求和引用都只使用这个实例
Property:  每次请求都创建一个新实例
request:    在一次Http请求中,容器会返回该Bean的同一个实例,而对于不同的用户请求,会返回不同的实例。需要注意的是,该作用域仅在基于WebSpring ApplicationContext情形下有效,以下的sessionglobal Session也是如此
session:同上,唯一的区别是请求的作用域变为了session
global session:全局的HttpSession中,容器会返回该bean的同一个实例,典型为在是使用portlet context的时候有效(这个概念本人也不懂)

注意:如果要用到requestsessionglobal session时需要配置

servlet2.4及以上:
l中添加:
<listener>
    <listener-class>org.t.scope.RequestContextListener />
</listener>

servlet2.4以下:
需要配置一个过滤器
<filter>
    <filter-name>XXXX</filter-name>
    <filter-class>org.springframework.web.filter.RequestContextFilter</filter-class>
<filter-mapping>
    <filter-name>XXXX</filter-name>
    <url-pattern>/*</url-pattern>
</filter-mapping>

另外,从2.0开始,可以自己定义作用域,但需要实现scope,并重写getremove方法

特别要引起注意的是:springframework作用
  一般情况下前面两种作用域是够用的,但如果有这样一种情况:singleton类型的bean引用一个prototypebean时会出现问题,因为singleton只初始化一次,但prototype每请求一次都会有一个新的对象,但prototype类型的beansingleton类型bean的一个属性,理所当然不可能有新prototpyebean产生,与我们的要求不符

解决方法:
1.放弃Ioc,这与设计初衷不符,并代码间会有耦合
2Lookup方法注入,推荐

但在用Lookup方法注入时也需要注意一点:需要在引用的Bean中定一个一个抽象地返回被引用对象的方法

package com.huyong.lookup;

import java.util.Calendar;

/**
* @author HuYong Email:yate7571@hotmail
*/
public class CurrentTime {
private Calendar now = Instance();

public void printCurrentTime() {
System.out.println("Current Time:" + Time());
}

}



package com.huyong.lookup;

/**
* @author HuYong Email:yate7571@hotmail
*/
public abstract class LookupBean {
private CurrentTime currentTime;

public CurrentTime getCurrentTime() {
return currentTime;
}

public void setCurrentTime(CurrentTime currentTime) {
this.currentTime = currentTime;

}
public abstract CurrentTime createCurrentTime();

}

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="/schema/beans"
xmlns:xsi="/2001/XMLSchema-instance"
xsi:schemaLocation="/schema/beans /schema/beans/spring-beans-2.0.xsd">

<bean id="currentTime" class="com.huyong.lookup.CurrentTime"
scope="prototype">
</bean>
<bean id="lookupBean" class="com.huyong.lookup.LookupBean"
scope="singleton">
<lookup-method name="createCurrentTime" bean="currentTime" />
<property name="currentTime" ref="currentTime"></property>
</bean>

</beans>


Main Test
package com.huyong.lookup;

import org.springframework.beans.factory.BeanFactory;
import org.springframework.l.XmlBeanFactory;
import io.ClassPathResource;

/**
* @author HuYong Email:yate7571@hotmail
*/
public class LookupMain {

/**
* @param args
* @throws Exception
*/
public static void main(String[] args) throws Exception {
ClassPathResource resource = new ClassPathResource(
"l");
BeanFactory factory = new XmlBeanFactory(resource);


LookupBean lookupBean = (LookupBean) Bean("lookupBean");
System.out.println("----------first time---------");
System.out.println("getCurrentTime:");
CurrentTime().printCurrentTime();
System.out.println("createCurrentTime:");
ateCurrentTime().printCurrentTime();

Thread.sleep(12345);

System.out.println("---------second time---------");
System.out.println("getCurrentTime:");
LookupBean lookupBean02 = (LookupBean) Bean("lookupBean");
CurrentTime().printCurrentTime();
System.out.println("createCurrentTime:");
ateCurrentTime().printCurrentTime();

}

}


感觉Spring的东西比较杂,学好spring一定要明白反射和代理是怎么回事!
渐渐的也挺会到了Spring的好处!
简单就是美!!

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。