关于Bean生命周期,我在网上找了两张图:
图1:
图2:
总结起来就是:
Bean构建:
Bean对象创建 》 @Autowired | @Resource》 @PostConstruct 》 InitializingBean#afterPropertiesSet 》 XML(init-method)
Bean 销毁:
@PreDestroy 》 DisposableBean#destory 》 XML (destory-method)
关于Bean生命周期,我在网上找了两张图:
图1:
图2:
总结起来就是:
Bean构建:
Bean对象创建 》 @Autowired | @Resource》 @PostConstruct 》 InitializingBean#afterPropertiesSet 》 XML(init-method)
Bean 销毁:
@PreDestroy 》 DisposableBean#destory 》 XML (destory-method)