首頁 > 軟體

淺談springBean的作用域

2023-02-06 06:01:19

前言:最近在進行springBean的作用域學習,並且學習了對應的例子。這裡進行一下總結 一:Bean的作用域基礎概念

如果想學習SpringBean的生命週期,那麼就必須要學習Bean的作用域。因為不同的作用域的bean的生命週期不同

1:singleton(唯一bean範例,由Spring容器管理其生命週期)
2:prototype(原型bean,建立後容器不管理其生命週期)
3:request(每次http都產生新的bean,僅在http request內有效)
4:session(首次http請求建立一個範例,作用域是瀏覽器首次存取直至瀏覽器關閉)
5:global-session(全域性 session 作用域,僅僅在基於 Portlet 的 web 應用中才有意義,Spring5 已經沒有了。

  • singleton 是預設的作用域,我們如果不對bean的scope設定項進行設定的話,預設就是Singleton型別。 在建立起容器時就同時自動建立了一個 bean 的物件,不管你是否使用,他都存在了,每次獲取到的物件都是同一個物件。
  • prototype: 原型bean,每次對此型別的bean進行請求的時候,都會建立一個新的bean範例。與我們 java中的new效果類似。Spring 只負責建立,當容器建立了 Bean 的範例後,Bean 的範例就交給使用者端程式碼管理,Spring 容器將不再跟蹤其生命週期。
  • request:每次HTTP請求都會建立一個新的Bean
  • session:首次http請求建立一個範例,作用域是瀏覽器首次存取直至瀏覽器關閉
  • global-session:作用域範圍是WebApplicationContext中。一般用於Portlet應用環境,該運用域僅適用於WebApplicationContext環境。

後三種只有在web環境下才有效。

bean的作用域具體實現

我針對對前兩種作用域編寫了一個對應的例子,這是一個普通的Maven專案,引進了spring的包。首先看一下專案結構

1.空的AService類

/**
 * @BelongsProject: demo
 * @BelongsPackage: com.tfjy.test
 * @Author: haolizhuo
 * @Description: A服務類
 * @CreateTime: 2023-01-28 09:59
 * @Version: 1.0
 */
@Component
//@Scope("prototype")
public class AService {

}

xml組態檔

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans.xsd
       http://www.springframework.org/schema/context
       http://www.springframework.org/schema/context/spring-context-4.0.xsd">

    <!--開啟註解的支援-->
    <context:annotation-config/>
    <!-- 自動掃描指定包及其子包下的所有Bean類 -->
    <context:component-scan base-package="com.tfjy.test"/>

    <!--    將AService設定為原型bean-->
<!--    <bean id="AService" class="com.tfjy.test.AService" scope="prototype"></bean>-->

</beans>

Test測試類

/**
 * @BelongsProject: demo
 * @BelongsPackage: PACKAGE_NAME
 * @Author: haolizhuo
 * @Description: test測試類
 * @CreateTime: 2023-01-28 10:01
 * @Version: 1.0
 */
public class Test {
    //bean驗證
    @org.junit.Test
    public void beanTest(){
        ApplicationContext context = new ClassPathXmlApplicationContext("bean.xml");

        AService aServiceOne = context.getBean("AService",AService.class);
        AService aServiceTwo = context.getBean("AService",AService.class);

        System.out.println(aServiceOne);
        System.out.println(aServiceTwo);
        //通過equals方法判斷兩個物件是否相等
        if(aServiceOne.equals(aServiceTwo)){
            System.out.println("兩次getBean方法,獲得了同一個單例物件");
        }else{
            System.out.println("兩次getBean方法,獲得的不是同一個單例物件");
        }
    }
}

4.pom檔案引入的依賴

    <dependencies>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-webmvc</artifactId>
            <version>5.2.15.RELEASE</version>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.13.2</version>
            <scope>compile</scope>
        </dependency>
    </dependencies>

程式碼分析

上述程式碼中直接執行的話,是沒有設定bean的作用域的。所以控制檯會列印,兩次getBean方法,獲得了同一個單例物件

我們設定bean物件為prototype型別的方式也有兩種。
1.註解方式。
在需要交由IOC容器管理的bean物件類上面新增@Scope(“prototype”)註解。
2.xml組態檔方式

<bean id="AService" class="com.tfjy.test.AService" scope="prototype"></bean>

這兩種方式設定任意一種,spring載入bean的時候都會去讀取設定,並將對應bean設定為prototype型別。

到此這篇關於淺談springBean的作用域的文章就介紹到這了,更多相關springBean 作用域內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com