ioc操作 bean管理(bean作用域)

13 篇文章 0 订阅

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

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是单实例对象

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值