@PostConstruct 注解
Posted lalalazar
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了@PostConstruct 注解相关的知识,希望对你有一定的参考价值。
@PostConstruct是java自己的注解,用来修饰非静态方法,
被@PostConstruct修饰的方法会在服务器家在servlet的时候运行,
并且只会被服务器执行一次,在bean初始化过程中执行顺序:
Constructor(构造方法)-@Autowired(依赖注入)-@PostConstruct(注释方法)
以上是关于@PostConstruct 注解的主要内容,如果未能解决你的问题,请参考以下文章
Spring中Bean初始化及销毁方法(InitializingBean接口DisposableBean接口@PostConstruct注解@PreDestroy注解以及init-method(代码片
踩坑:@PostConstruct@DependsOn@Order注解嵌套使用解决Bean加载优先级问题