ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
### **springbean的生命周期** 1. Spring对bean进行实例化; 2. Spring将值和bean的引用注入到bean对应的属性中; 3. 如果bean实现了BeanNameAware接口,Spring将bean的ID传递给setBeanName\(\)方法; 4. 如果bean实现了BeanFactoryAware接口,Spring将调用setBeanFactory\(\)方法,将BeanFactory容器实例传入; 5. 如果bean实现了ApplicationContextAware接口,Spring将调用setApplicationContext\(\)方法,将bean所在的应用上下文的引用传入进来; 6. 如果bean实现了BeanPostProcessor接口,Spring将调用它们的post-ProcessBeforeInitialization\(\)方法; 7. 如果bean实现了InitializingBean接口,Spring将调用它们的after-PropertiesSet\(\)方法。类似地,如果bean使用init-method声明了初始化方法,该方法也会被调用; 8. 如果bean实现了BeanPostProcessor接口,Spring将调用它们的post-ProcessAfterInitialization\(\)方法; 9. 此时,bean已经准备就绪,可以被应用程序使用了,它们将一直驻留在应用上下文中,直到该应用上下文被销毁; 10. 如果bean实现了DisposableBean接口,Spring将调用它的destroy\(\)接口方法。同样,如果bean使用destroy-method声明了销毁方法,该方法也会被调用。 ![](https://img.kancloud.cn/68/ca/68ca8e9e7e8c6a108630a77b28dd7d21_1134x626.png)