Spring boot 学习笔记(三)

一.Bean的scope

 Scope描述的是Spring容器如何新建Bean的市里的。Spring的Scope有以下几种,通过

@Scope注解来实现。

(1)singleton:一个Spring容器中只有一个Bean的实例,为此Spring的默认配置,全容器

共享一个实例。

(2)Prototype:每次调用新建一个Bean的实例。

(3)Request:Web项目中,给每一个http request新建一个Bean实例。

(4)Session:Web项目中,给每一个http session新建一个Bean实例。

(5)GlobalSession:这个只在portal应用中有用,给每一个global http session新建一个

实例。

二,示例一

package scope;

import org.springframework.stereotype.Service;

@Service
public class DemosingletonService {

}

代码解释

默认为Singleton,相当于@Scope(“singleton”)。

实例二

package scope;

import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Service;

@Service
@Scope("prototype")
public class DemoPrototypeService {

}

代码解释

声明Scope为Prototype。

示例三 配置类

package scope;

import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;


@Configuration
@ComponentScan("scope")
public class ScopeConfig {

}
实例四 测试

package scope;

import javax.xml.ws.handler.MessageContext.Scope;

import org.springframework.context.annotation.AnnotationConfigApplicationContext;

public class Main {

    public static void main(String[] args) {
        // TODO Auto-generated method stub


        AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(ScopeConfig.class);
        DemosingletonService service1 = context.getBean(DemosingletonService.class);
        DemosingletonService service2 = context.getBean(DemosingletonService.class);
        DemoPrototypeService service3 = context.getBean(DemoPrototypeService.class);
        DemoPrototypeService service4 = context.getBean(DemoPrototypeService.class);
        DemoPrototypeService service5 = new DemoPrototypeService();
        DemoPrototypeService service6 = new DemoPrototypeService();
        System.out.println(service1.equals(service2));
        System.out.println(service3.equals(service4));
        System.out.println(service5.equals(service6));
    }

}


结果

true
false
false

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值