Spring启动后获取所有指定注解的Bean
2018-03-21 21:42:04
1971 次阅读
0 个评论
最近项目中遇到一个业务场景,就是在Spring容器启动后获取所有的Bean中实现了一个特定接口的对象,只要实现ApplicationListener<ContextRefreshedEvent>接口,然后把实现类进行@Component即可,代码如下:
@Component
public class ContextRefreshedListener implements ApplicationListener<ContextRefreshedEvent> {
@Override
public void onApplicationEvent(ContextRefreshedEvent event) {
// 根容器为Spring容器
if(event.getApplicationContext().getParent()==null){
Map<String,Object> beans = event.getApplicationContext().getBeansWithAnnotation(IMobile.class);
for(Object bean:beans.values()){
System.err.println(bean==null?"null":bean.getClass().getName());
}
System.err.println("=====ContextRefreshedEvent====="+event.getSource().getClass().getName());
}
}
}
其中,通过event.getApplicationContext().getBeansWithAnnotation获取到所有拥有特定注解的Beans集合,然后遍历所有bean实现业务场景。 总结思考:这样的功能可以实现系统参数的初始化,获取系统中所有接口服务清单等一系列需要在Spring启动后初始化的功能。
延生一下:除了以上启动后事件外,还有其他三个事件
ContextClosedEvent在关闭容器的时候调用,
ContextStartedEvent理论上在容器启动的时候调用,
ContextStoppedEvent理论上在容器关闭的时候调用。
00
相关话题
- spring boot拦截器验证token防止表单重复提交
- spring boot集成Hibernate配置
- DelayQueue实现支付系统异步通知
- 开放接口api的Token签名sign设计与实现
- Spring Boot启动时执行指定方法
- Spring+redis实现session集群
- Spring Boot配置@ConditionalOnProperty来控制Configuration是否生效
- jackson Spring boot 枚举类型不区分大小写映射
- 解决Spring Boot+AngularJS因为跨域导致Session丢失问题
- Spring boot打包后从类路径目录中获取资源列表
- 最新商城系统推荐
- Spring Boot指定某个Controller支持跨源请求,以及如何让Controller类某个成员方法支持跨源请求
- 分布式文件系统选型
- Fabric.js实作网格系统
- 使用commons-vfs监听文件系统