解释AFTERPROPERTIESSET

在spring的bean的生命周期中,实例化->生成对象->属性填充后会进行afterPropertiesSet方法,这个方法可以用在一些特殊情况中,也就是某个对象的某个属性需要经过外界得到,比如说查询数据库等方式,这时候可以用到spring的该特性,只需要实现InitializingBean即可:

  1. @Component("a")
  2. public class A implements InitializingBean {
  3. private B b;
  4. public A(B b) {
  5. this.b = b;
  6. }
  7. @Override
  8. public void afterPropertiesSet() throws Exception {
  9. }
  10. }
  11. 这样可以在afterPropertiesSet方法中进行你的额外操作。
点赞 ( 0 )

0 条评论

发表评论

人生在世,错别字在所难免,无需纠正。

插入图片
s
返回顶部