bean初始化和销毁
在Spring中,InitializingBean和DisposableBean是两个标记接口,为Spring执行时bean的初始化和销毁某些行为时的有用方法。
对于Bean实现 InitializingBean,它将运行 afterPropertiesSet()在所有的 bean 属性被设置之后。
对于 Bean 实现了DisposableBean,它将运行 destroy()在 Spring 容器释放该 bean 之后。
对于Bean实现 InitializingBean,它将运行 afterPropertiesSet()在所有的 bean 属性被设置之后。
对于 Bean 实现了DisposableBean,它将运行 destroy()在 Spring 容器释放该 bean 之后。
在Spring中,可以使用 init-method 和 destroy-method 在bean 配置文件属性用于在bean初始化和销毁某些动作时。这是用来替代 InitializingBean和DisposableBean接口。
<bean id="customerService" class="com.hst.spring.services.CustomerService"
init-method="initIt" destroy-method="destroy">
bean作用域
在Spring中,bean作用域用于确定哪种类型的 bean 实例应该从Spring容器中返回给调用者。bean支持的5种范围域:
-
singleton 单例 - 每个Spring IoC 容器返回一个bean实例 , 无论多少次调用 getBean()方法获取它,它总是返回同一个实例。
-
prototype 原型- 当每次请求时返回一个新的bean实例
-
request 请求 - 返回每个HTTP请求的一个Bean实例
-
session 会话 - 返回每个HTTP会话的一个bean实例
-
全局会话- 返回全局HTTP会话的一个bean实例
如果 bean 配置文件中没有指定 bean 的范围,默认为单例。
<bean id="customerService" class="com.yiibai.customer.services.CustomerService"
scope="prototype"/>