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

2021-01-15 03:15

阅读:729

标签:ica   springioc   web   request   定义   容器   nbsp   singleton   type   

Spring框架支持以下五种bean的作用域:
(1)singleton: bean在每个Springioc容器中只有一个实例。
(2)prototype:一个bean的定义可以有多个实例。
(3)request:每次http请求都会创建一个bean,该作用域仅在基于web的SpringApplicationContext情形下有效。
(4)session:在一个HTTPSession中,一个bean定义对应一个实例。该作用域仅在基于web的SpringApplicationContext情形下有效。
(5)global-session:在一个全局的HTTPSession中,一个bean定义对应一个实例。该作用域仅在基于web的SpringApplicationContext情形下有效。
缺省的Springbean的作用域是Singleton.

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

标签:ica   springioc   web   request   定义   容器   nbsp   singleton   type   

原文地址:https://www.cnblogs.com/WangMengyi/p/14275439.html


评论


亲,登录后才可以留言!