转《Spring Bean 初始化之InitializingBean, init-method 和 PostConstruct》

https://segmentfault.com/a/1190000014105687

  1. spring bean的初始化执行顺序:构造方法(依赖注入完成) --> @PostConstruct注解的方法 --> afterPropertiesSet方法 --> init-method指定的方法。具体可以参考例子
  2. afterPropertiesSet通过接口实现方式调用(效率上高一点),@PostConstruct和init-method都是通过反射机制调用

Leave a Reply

Your email address will not be published. Required fields are marked *