Spring常用配置

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应用中有用,给每一个golbal http session 新建一个Bean实例;
另外在Spring Batch 中还有一个Scope是使用@StepScope
演示默认的singleton和Prototype 分别从Spring 容器中获得2次Bean判断Bean的实例是否相等。
二、示例
(1)、编写 Singleton 的Bean
@Service
public class DemoSingletonService{};
代码解释:
1、默认为Singleton 相当于@Scope(“singleton”)
(2)、编写Prototype的Bean
@Service
@Scope(“prototype”)
public class  DemoPrototypeService{};
代码解释:
1、声明Scope为Prototype
(3)、配置类
@Configuration
@ComponentScan();
public class Config{};
(4)、运行
public static void main (String[] args){
    AnnotationConfigApplicationContext context =new  AnnotationConfigContext(ScopeConfig.class);
    DemoSingletonService  s1=context.getBean(DemoSingletonService.class);
    DemoSingletonService s2=context.getBean(DemoSigletonService.class);
    DemoPrototypeService p1= context.getBean(DemoPrototypeService.class);
    DemoPrototypeService p2=context.getBean(DomePrototypeService.class);
    System.out.println("s1和s2是否相等"+s1.equals(s2));
    System.out,println("p1和p2是否相等"+p1.equals(p2));

context.close();
}

结果为:s1和s2是否相等 true
p1和p2是否相等 false

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值