Spring Bean生命周期简易版
2023-02-03 13:41:59 0 举报
Spring Bean生命周期 各个阶段
作者其他创作
大纲/内容
DisposableBean的destroy
属性注入
InitializingBean的afterPropertiesSet
如果定义了 PostConstruct 标注的方法
xml中配置的init-method
BeanNameAware的setBeanName
创建对象,即new 一个对象
如果实现了 BeanPostProcessor
BeanPostProcessor的postProcessAfterInitialization()
属性注入@Autowired@Resource
如果实现了 InitializingBean
BeanPostProcessor的postProcessBeforeInitialization()
如果实现了BeanNameAware:获取到当前 bean 注入到Spring 中时的 beanName
BeanFactoryAware
ApplicationContextAware
销毁对象
xml中配置的destroy-method
比较少用了
PostConstruct标注的初始化方法
PreDestroy标注的方法
0 条评论
下一页