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

scope注解的value属性值图示:
组件注册(四)--@Scope-设置组件作用域_第1张图片
组件注册(四)--@Scope-设置组件作用域_第2张图片
创建一个新的配置类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几次,添加几个组件

你可能感兴趣的:(spring源码解读,spring注解驱动开发)