PostConstruct
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PostConstruct相关的知识,希望对你有一定的参考价值。
Spring AOP注解通过@Autowired,@Resource,@Qualifier,@PostConstruct,@PreDestroy注入属性的配置文件详解
1.6. @PostConstruct(JSR-250)
在方法上加上注解@PostConstruct,这个方法就会在Bean初始化之后被Spring容器执行(注:Bean初始化包括,实例化Bean,并装配Bean的属性(依赖注入))。
它的一个典型的应用场景是,当你需要往Bean里注入一个其父类中定义的属性,而你又无法复写父类的属性或属性的setter方法时,如:
以上是关于PostConstruct的主要内容,如果未能解决你的问题,请参考以下文章
@ViewScoped 在每个回发请求上调用 @PostConstruct
哪个先执行:@PostConstruct和@Bean的initMethod?
@postConstruct constructor afterSetProperties() setApplicationContext 执行顺序
Spring中Bean初始化及销毁方法(InitializingBean接口DisposableBean接口@PostConstruct注解@PreDestroy注解以及init-method(代码片