spring中@Scope控制作用域

  注解形势:通过@Scope注解控制作用域,默认使用单实例模式,可修改为多实例模式

 /**
* Specifies the name of the scope to use for the annotated component/bean.
* <p>Defaults to an empty string ({@code ""}) which implies
* {@link ConfigurableBeanFactory#SCOPE_SINGLETON SCOPE_SINGLETON}.
* @since 4.2
* @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
* @see #value
*
* prototype:多实例的
* singleton:单实例的(默认)单实例启动在ioc容器启动会调用方法创建对象放入到ioc容器中,以后每次获取直接从ioc容器中拿,都是之前创建好的对象
* request:同一次请求创建一个实例 多实例情况下 ,ioc启动时并不会调用方法创建对象放到容器中,而是没次获取对象时创建对象,每次获取都是不同的实例
* session:同一个session创建一个实例
*/
@Scope(value="prototype") //控制作用域
@Bean("persion")
public Persion persion() {
return new Persion("zhangsan",20);
}

同理xml使用:

 <bean id="persion" class="com.test.bean.Persion" scope="singleton">
<property name="age" value="18"></property>
<property name="name" value="zhangsan"></property>
</bean>

测试类:bean==bean2 相等说明是同一个示例,不相等 说明是多个示例

 @Test
public void test02() {
AnnotationConfigApplicationContext applicationContext = new AnnotationConfigApplicationContext(
MainConfig2.class); String[] definitionNames = applicationContext.getBeanDefinitionNames();// 获取spring装配的bean for (String name : definitionNames) {
System.out.println(name);
}
System.out.println("ioc容器创建完成。。。");
Object bean=applicationContext.getBean("persion");
Object bean2=applicationContext.getBean("persion");
System.out.println(bean==bean2); }
上一篇:LeetCode——15. 3Sum


下一篇:LeetCode 15 3Sum [sort]