【spring6】Bean的作用域

1.singleton

        默认情况下,Spring的IoC容器创建的Bean对象是单例的。

public void testFirstSpringCode(){
        ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");
        Object user1 = applicationContext.getBean("userBean");
        System.out.println(user1);

        Object user2 = applicationContext.getBean("userBean");
        System.out.println(user2);

    }

        Bean对象的创建是在初始化Spring上下文的时候就完成的。

public class vip {
    public vip() {
        System.out.println("无参构造方法");
    }
}

@Test
    public void testVipSpringCode(){
        ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");        

    }

      

2.prototype          

        要变成多例则在bean标签中指定scope属性的值为:prototype,这样Spring会在每一次执行getBean()方法的时候创建Bean对象,调用几次则创建几次。这一次初始化Spring上下文的时候,并没有创建Bean对象。

<bean id="userBean" class="com.bean.user" scope="prototype"/>

 @Test
    public void testFirstSpringCode(){
        ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");
        Object user1 = applicationContext.getBean("userBean");
        System.out.println(user1);

        Object user2 = applicationContext.getBean("userBean");
        System.out.println(user2);

    }

3.其它scope

scope属性的值不止两个,它一共包括8个选项:

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

自定义scope:在同一个线程中,获取的Bean都是同一个,跨线程则是不同的对象。

<!--自定义-->
    <bean class="org.springframework.beans.factory.config.CustomScopeConfigurer">
        <property name="scopes">
            <map>
                <entry key="myThread">
                    <bean class="org.springframework.context.support.SimpleThreadScope"/>
                </entry>
            </map>
        </property>
    </bean>
    <!--使用scope-->
    <bean id="userBean" class="com.bean.user" scope="myThread"/>
@Test
    public void testFirstSpringCode(){
        ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");
        Object user1 = applicationContext.getBean("userBean");
        Object user2 = applicationContext.getBean("userBean");
        System.out.println(user1);
        System.out.println(user2);

        // 启动线程
        new Thread(new Runnable() {
            @Override
            public void run() {
                Object a = applicationContext.getBean("userBean");
                Object b = applicationContext.getBean("userBean");
                System.out.println(a);
                System.out.println(b);
            }
        }).start();

    }

  • 11
    点赞
  • 9
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值