2.Spring常用配置—1.Bean的Scope

1.點睛 Scope描述的是Spring容器如何新建Bean的實例的。Spring的Scope有以下幾種,通過@Scope註解來實現。 (1)Singleton:一個Spring容器中只有一個Bean的實例,此爲Spring的默認配置,全容器共享一個實例。 (2)Prototype:每次調用新建一個Bean的實例。 (3)Request:Web項目中,給每一個http request新建一個Bea
相關文章
相關標籤/搜索