Bean的初始化指的是:Spring IOC 容器中,Bean 组件创建完成,属性赋值后,初始化操作。
Bean的销毁指的是:Spring IOC 容器销毁之前,通知 Bean 组件销毁的过程。
- 方式一: XML 配置
<bean id="person" class="com.john.bean.Person" init-method="initMethod" destroy-method="destoryMethod">
<property name="name" value="刘菲" />
<property name="age" value="19" />
</bean>
- 方式二:注解 @Bean 属性:initMethod,destroyMethod