Scope註解的使用方法

2021-09-14 05:02:19 字數 392 閱讀 5664

@scope註解的目的是用來調節作用域

@scope

("prototype"

)//多例項,ioc容器啟動建立的時候,並不會建立物件放在容器在容器當中,當你需要的時候,需要從容器當中取該物件的時候,就會建立。

@scope

("singleton"

)//單例項 ioc容器啟動的時候就會呼叫方法建立物件,以後每次獲取都是從容器當中拿同乙個物件(map當中)。

@scope

("request"

)//同乙個請求建立乙個例項

@scope

("session"

)//同乙個session建立乙個例項

Spring註解中 Scope 的使用解說

案例 system.out.println thread.currentthread getname getparamvalve now param is bean.getparam 執行緒12 setparamvalve now param is null 執行緒3 setparamvalve n...

Spring中的 scope註解

預設是單例模式,即scope singleton 另外scope還有prototype request session global session作用域。scope prototype 多例 scope預設是單例模式 singleton 如果需要設定的話 scope prototype 1.sin...

Spring中的 scope註解

預設是單例模式,即scope singleton 另外scope還有prototype request session global session作用域。scope prototype 多例 scope預設是單例模式 singleton 如果需要設定的話 scope prototype 1.sin...