bean作用域 设置创建bean是单实例还是多实例

单实例指的是只生成一个实例对象。

package com.testdemo;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class test {
    public static void main( String [] args)
    {
        ApplicationContext applicationContext =new ClassPathXmlApplicationContext("demo1.xml");
        Lession lession= applicationContext.getBean("lession",Lession.class);
        System.out.println(lession);
        Lession lession2= applicationContext.getBean("lession",Lession.class);
        System.out.println(lession2);
    }
}

地址是一样的,代表生成了一个lession对象,即使我声明两个lession,但是xml文件实际上只生成了一个lession对象(地址值都相同了,肯定是一个)

多实例指的是 生成多个对象。

修改 xml文件 增加 scope=“”prototype“”

prototype 和 singleton的区别

1.prototype 表示多实例 singleton 表示单实例 (默认值)

2.设置scope值是singleton的时候,加载spring文件时就会创建单实例对象

3.设置scope值是prototype的时候,不是在加载spring文件时创建对象,而是在调用getbean方法的时候创建更多的实例对象

<bean class="com.testdemo.Lession" id="lession" scope="prototype">
  <property name="name" value="1000"></property>
</bean>

其他不变 两个的地址值是不一样的,说明生成了两个对象

bean作用域:

1.在spring中,设置创建bean是单实例还是多实例

2.在spring中,默认bean是单实例对象

经验分享 程序员 微信小程序 职场和发展