springboot启动前执行方法的四种方式总结
目录
- 第一种@PostConstruct注解
- 第二种实现InitializingBean接口
- 第三种 实现BeanPostProcessor接口
- 第四种在启动类run之前执行方法
- 总结
第一种@PostConstruct注解
@Configurationpublic class Test1 {@Autowiredprivate Environment environment; @PostConstructpublic void test(){String property = environment.getProperty("aaa.bbb"); System.out.println("test1"+property); }}
第二种实现InitializingBean接口
@Configurationpublic class Test2 implements InitializingBean {@Autowiredprivate Environment environment; @Overridepublic void afterPropertiesSet() throws Exception {String property = environment.getProperty("aaa.bbb"); System.out.println("test2"+property); }}
第三种 实现BeanPostProcessor接口
@Configurationpublic class Test3 implements BeanPostProcessor {@Autowiredprivate Environment environment; @Overridepublic Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException {String property = environment.getProperty("aaa.bbb"); System.out.println("test3"+property); return bean; }@Overridepublic Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException {return bean; }}
第四种在启动类run之前执行方法
@SpringBootApplicationpublic class DemoApplication {public static void main(String[] args) {System.out.println("test4"); SpringApplication.run(DemoApplication.class, args); }}
当然这是不可取的
【springboot启动前执行方法的四种方式总结】他们运行的优先级是
启动类前->BeanPostProcessor->@PostConstruct->InitializingBean
值得注意的是第三种方式,他可以让实现类里的方法提前执行
同样的使用@PostConstruct的两个类
@Configurationpublic class Test1 {@PostConstructpublic void test(){System.out.println("test1"); }}
第一个没有实现BeanPostProcessor接口
@Configurationpublic class Test3 implements BeanPostProcessor {@Autowiredprivate Environment environment; @PostConstructpublic voidtest(){System.out.println("test3"); }}
第二个实现了BeanPostProcessor接口,但是没有重写他的方法
打印结果如下
文章图片
可以看到同样是使用了@PostConstruct注解,但是他们的执行顺序却截然不同
BeanPostProcessor为每一个spring维护的对象调用前后做操作,具体可以参照这篇博文
www.jb51.net/article/234143.htm
知道了启动时的加载顺序,对我们做一些初始化工作有帮助。
总结 到此这篇关于springboot启动前执行方法的四种方式的文章就介绍到这了,更多相关springboot启动前执行方法内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
推荐阅读
- SpringBoot|SpringBoot JPA出现错误:No identifier specified for en解决方案
- 一道面试题牵出12个前端硬核知识点,你能答出几个()
- 线性代数在前端中的应用(二)(实现鼠标拖拽旋转元素、Canvas图形)
- 超好用的两款作图工具,用起来~~~
- 尤娜,我去面试了
- 一文彻底搞懂原型链
- [Golang]力扣Leetcode—剑指Offer—数组—47.礼物的最大价值(前缀和)
- https|聊一聊Https
- 腾讯|10年前腾讯微信后台第一天提交的代码曝光!
- 随笔|归零,重新出发