Spring课程 Spring入门篇 4-7 Spring bean装配之基于java的容器注解说明--@Scope 控制bean的单例和多例

课程链接:

1    解析

1.1  bean的单例和多例的应用场景

1.2  单例多例的验证方式

1.3  @Scope注解单例多例应用

2    代码演练

2.1  @Scope代码应用

1    解析

1.1  bean的单例和多例的应用场景

1.1.1  什么是单例多例:

所谓单例就是所有的请求都用一个对象来处理,比如我们常用的service和dao层的对象通常都是单例的,而多例则指每个请求用一个新的对象来处理,比如action; 

1.1.2. 如何产生单例多例:
    在通用的SSH中,单例在spring中是默认的,如果要产生多例,则在配置文件的bean中添加scope="prototype";

1.1.3. 为什么用单例多例:
    之所以用单例,是因为没必要每个请求都新建一个对象,这样子既浪费CPU又浪费内存;
    之所以用多例,是为了防止并发问题;即一个请求改变了对象的状态,此时对象又处理另一个请求,而之前请求对对象状态的改变导致了对象对另一个请求做了错误的处理;
    用单例和多例的标准只有一个:  当对象含有可改变的状态时(更精确的说就是在实际应用中该状态会改变),则多例,否则单例;

1.1.4 单例多例举例:

 数据库连接只有一个,使用单例。

 action调business_apply 表,可能一个业务申请a已经把状态1改成2,现在业务申请b也要改状态1为2,如果用单例,明显就会出现错误。 所以action或者业务逻辑处理层多使用多例。

1.2  单例多例的验证方式

通过hashcode码值验证

1.3  @Scope注解单例多例应用

    @Bean
@Scope(value="prototype",proxyMode=ScopedProxyMode.TARGET_CLASS)//singleton
public Store getStringStore(){
return new StringStore();
}

2    代码演练

2.1  @Scope代码应用

实体类:

package com.imooc.beanannotation.javabased;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.ImportResource;
import org.springframework.context.annotation.Scope;
import org.springframework.context.annotation.ScopedProxyMode; @Configuration
@ImportResource("classpath:config.xml")
public class StoreConfig { /*@Value("${jdbc.url}")
private String url; @Value("${jdbc.userName}")
private String userName; @Value("${jdbc.passWord}")
private String passWord; public String getUrl() {
return url;
} public void setUrl(String url) {
this.url = url;
} public String getUserName() {
return userName;
} public void setUserName(String userName) {
this.userName = userName;
} public String getPassWord() {
return passWord;
} public void setPassWord(String passWord) {
this.passWord = passWord;
}*/ /**
* 此处作为实体类:
* 通过@bean将myDriverStore注解到spring容器中,供TestJavaBased调用
* @return
*//*
@Bean
public MyDriverManager myDriverStore() {
return new MyDriverManager(url, userName, passWord);
}*/ @Bean
@Scope(value="prototype",proxyMode=ScopedProxyMode.TARGET_CLASS)//singleton
public Store getStringStore(){
return new StringStore();
}
}

测试类:

package com.imooc.test.beanannotation;

import org.junit.Test;

import com.imooc.beanannotation.javabased.MyDriverManager;
import com.imooc.beanannotation.javabased.StringStore;
import com.imooc.test.base.UnitTestBase; public class TestJavaBased extends UnitTestBase{ public TestJavaBased(){
super("classpath*:spring-beanannotation.xml");
} @Test
public void testStoreConfig(){
System.out.println(super.getbean("store").getClass().getName());
} @Test
public void testMyDriverStore(){
MyDriverManager myDriverStore =super.getbean("myDriverStore");
System.out.println(myDriverStore.getClass().getName());
} @Test
public void testScope(){
StringStore sStore1 = super.getbean("getStringStore");
System.out.println(sStore1.hashCode());
StringStore sStore2 = super.getbean("getStringStore"
);
System.out.println(sStore2.hashCode());
}

}

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"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd"> <context:component-scan base-package="com.imooc.beanannotation"></context:component-scan>

</beans>

打印日志:

三月 30, 2019 6:32:56 下午 org.springframework.context.support.ClassPathXmlApplicationContext prepareRefresh
信息: Refreshing org.springframework.context.support.ClassPathXmlApplicationContext@660962c7: startup date [Sat Mar 30 18:32:55 CST 2019]; root of context hierarchy
三月 30, 2019 6:32:56 下午 org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions
信息: Loading XML bean definitions from URL [file:/F:/xiangmu3/Xin/FuQiang/Spring/ddwei-dao/target/classes/spring-beanannotation.xml]
三月 30, 2019 6:32:56 下午 org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions
信息: Loading XML bean definitions from class path resource [config.xml]
724131351
685788708

三月 30, 2019 6:32:57 下午 org.springframework.context.support.ClassPathXmlApplicationContext doClose
信息: Closing org.springframework.context.support.ClassPathXmlApplicationContext@660962c7: startup date [Sat Mar 30 18:32:55 CST 2019]; root of context hierarchy
上一篇:spring作用域(Spring Bean Scopes Example)


下一篇:终于搞懂Spring中Scope为Request和Session的Bean了