组件注册(四)--@Scope-设置组件作用域

scope注解的value属性值图示:
在这里插入图片描述
在这里插入图片描述
创建一个新的配置类config.MainConfig2.java

import org.springframework.beans.factory.config.ConfigurableBeanFactory;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Scope;

import com.atguigu.bean.Person;

@Configuration
public class MainConfig2 {
	
	//默认是单例的
	/**
	 * @see ConfigurableBeanFactory#SCOPE_PROTOTYPE  prototype
	 * @see ConfigurableBeanFactory#SCOPE_SINGLETON  singleton
	 * @see org.springframework.web.context.WebApplicationContext#SCOPE_REQUEST  request
	 * @see org.springframework.web.context.WebApplicationContext#SCOPE_SESSION  session
	 * @return
	 * 
	 * prototype:多实例的:ioc容器启动并不会调用方法创建对象放在容器中。
	 * 			每次获取的时候会调用方法创建对象
	 * singleton:单实例的(默认值):ioc容器启动会调用方法创建对象放到ioc容器中。
	 * 			以后每次获取就是直接从容器(map.get())中拿。
	 * request:同一次请求创建一个实例--外网环境
	 * session:同一个session创建一个实例--外网环境
	 */
	@Scope("prototype")
	@Bean("person")
	public Person person() {
		System.out.println("给容器中添加Person....");
		return new Person("张三",25);
	}
}

测试类中进行测试
IOCTest.java

	@SuppressWarnings("resource")
	@Test
	public void test02() {
		AnnotationConfigApplicationContext applicationContext = new AnnotationConfigApplicationContext(MainConfig2.class);
		String[] definitionNames = applicationContext.getBeanDefinitionNames();
		for (String name : definitionNames) {
			System.out.println(name);
		}
		
		System.out.println("ioc容器创建完成....");
		Object bean = applicationContext.getBean("person");
		Object bean2 = applicationContext.getBean("person");
		System.out.println(bean==bean2);
	}

设置为单例模式:在ioc容器创建的时候就已经在容器中添加了Person组件,后边new几次都是get这个已经存在于容器中的组件了
在这里插入图片描述
设置为多例模式:创建ioc容器时并没有添加组件,new时才会创建组件添加到容器中,并且new几次,添加几个组件
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值