解释Spring支持的几种bean的作用域?

Spring框架支持以下五种bean的作用域:

1.singleton :bean在每个Spring ioc 容器中只有一个实例。

2.prototype:一个bean的定义可以有多个实例。

3.request:每次http请求都会创建一个bean,该作用域仅在基于web的Spring ApplicationContext情形下有效。

4.session:在一个HTTP Session中,一个bean定义对应一个实例。该作用域仅在基于web的Spring ApplicationContext情形下有效。

5.global-session:在一个全局的HTTP Session中,一个bean定义对应一个实例。该作用域仅在基于web的Spring ApplicationContext情形下有效。

简要回答:
1.singleton(单例模式)
2.prototype(原型模式)
3.request(HTTP请求)
4.session(会话)
5.global-session(全局会话)

你可能感兴趣的:(解释Spring支持的几种bean的作用域?)