04-Spring中Bean的作用域

Bean的作用域

scope的属性值

属性值 作用
singleton 默认单例
prototype 原型每调用一次getBean()方法则获取一个新的Bean对象 , 每次注入的时候都是新对象
request 一个请求对应一个Bean仅限于在WEB应用中使用 , 需要引入web的框架如SpringMvc
(global) session 一个会话对应一个Bean仅限于在WEB应用中使用 , 需要引入web的框架如SpringMvc
global session portlet应用中专用的, portlet和servlet都是规范, servlet运行在servlet容器中如Tomcat, portlet运行在portlet容器中
application 一个应用对应一个Bean仅限于在WEB应用中使用
websocket 一个websocket生命周期对应一个Bean仅限于在WEB应用中使用
自定义scope 很少使用

scope属性值singleton(单例)

Spring的IoC容器中默认情况下Bean对象是单例的

  • Bean对象的创建是在初始化Spring上下文的时候就完成的 , 执行getBean()方法的时候Bean对象已经创建好了 , 每次获取操作的都是那个单例的Bean对象
java 复制代码
public class SpringBean {
    public SpringBean() {
        System.out.println("SpringBean的无参数构造方法执行");
    }
}
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对象是单例的,scope="singleton"可以省略-->
    <bean id="sb" class="com.powernode.spring6.beans.SpringBean" />
</beans>
java 复制代码
@Test
public void testScope(){
    ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring-scope.xml");
    SpringBean sb1 = applicationContext.getBean("sb", SpringBean.class);
    //com.powernode.spring6.beans.SpringBean@5b239d7d
    System.out.println(sb1);

    //com.powernode.spring6.beans.SpringBean@5b239d7d
    SpringBean sb2 = applicationContext.getBean("sb", SpringBean.class);
    System.out.println(sb2);
}

scope属性值prototype(多例)

如果想让Spring的Bean对象以多例的形式存在,可以在bean标签中指定scope属性的值为prototype

  • 初始化Spring上下文时不会创建这些prototype的Bean对象 , 只有每一次执行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="sb" class="com.powernode.spring6.beans.SpringBean" scope="prototype" />
</beans>
java 复制代码
@Test
public void testScope(){
    ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring-scope.xml");
    //com.powernode.spring6.beans.SpringBean@29445a7
    SpringBean sb1 = applicationContext.getBean("sb", SpringBean.class);
    System.out.println(sb1);
	//com.powernode.spring6.beans.SpringBean@67d48005
    SpringBean sb2 = applicationContext.getBean("sb", SpringBean.class);
    System.out.println(sb2);
}

自定义线程级别Scope(了解)

第一步: 自定义Scope实现Scope接口,实现在同一个线程中获取的Bean都是同一个, 跨线程获取的是不同的Bean对象

  • Spring内置了实现Scope接口的线程范围的类org.springframework.context.support.SimpleThreadScope

第二步: 使用CustomScopeConfigurer内置类将自定义的Scope注册到Spring容器中

xml 复制代码
<bean class="org.springframework.beans.factory.config.CustomScopeConfigurer">
  <!--设置scopes属性,这个属性是个map集合表示可以指定多个线程范围-->
  <property name="scopes">
    <map>
      <!--自定义线程名-->
      <entry key="myThread">
        <!--这个Scope接口的实现类使用的是Spring内置的,也可以自己定义-->
        <bean class="org.springframework.context.support.SimpleThreadScope"/>
      </entry>
    </map>
  </property>
</bean>

第三步: 使用自定义线程的Scope

xml 复制代码
<bean id="sb" class="com.powernode.spring6.beans.SpringBean" scope="myThread" />
java 复制代码
@Test
public void testCustomScope(){
    //主线程
    ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring-scope.xml");
    SpringBean sb1 = applicationContext.getBean("sb", SpringBean.class);
    SpringBean sb2 = applicationContext.getBean("sb", SpringBean.class);
    //com.powernode.spring6.beans.SpringBean@5b236d7d
    System.out.println(sb1);
    //com.powernode.spring6.beans.SpringBean@5b236d7d
    System.out.println(sb2);
    // 启动新线程
    new Thread(new Runnable() {
        @Override
        public void run() {
            SpringBean a = applicationContext.getBean("sb", SpringBean.class);
            SpringBean b = applicationContext.getBean("sb", SpringBean.class);
            //com.powernode.spring6.beans.SpringBean@29445a6
            System.out.println(a);
            //com.powernode.spring6.beans.SpringBean@29445a6
            System.out.println(b);
        }
    }).start();
}
相关推荐
一 乐4 小时前
婚纱摄影网站|基于ssm + vue婚纱摄影网站系统(源码+数据库+文档)
前端·javascript·数据库·vue.js·spring boot·后端
Boilermaker19924 小时前
[Java 并发编程] Synchronized 锁升级
java·开发语言
Cherry的跨界思维4 小时前
28、AI测试环境搭建与全栈工具实战:从本地到云平台的完整指南
java·人工智能·vue3·ai测试·ai全栈·测试全栈·ai测试全栈
alonewolf_995 小时前
JDK17新特性全面解析:从语法革新到模块化革命
java·开发语言·jvm·jdk
一嘴一个橘子5 小时前
spring-aop 的 基础使用(啥是增强类、切点、切面)- 2
java
码事漫谈5 小时前
Protocol Buffers 编码原理深度解析
后端
sheji34165 小时前
【开题答辩全过程】以 中医药文化科普系统为例,包含答辩的问题和答案
java
码事漫谈5 小时前
gRPC源码剖析:高性能RPC的实现原理与工程实践
后端
恋爱绝缘体16 小时前
2020重学C++重构你的C++知识体系
java·开发语言·c++·算法·junit
xiaolyuh1236 小时前
Spring 框架 核心架构设计 深度详解
spring·设计模式·spring 设计模式