91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Spring怎么為singleton?bean注入prototype?bean

發布時間:2022-07-13 14:18:34 來源:億速云 閱讀:115 作者:iii 欄目:開發技術

本篇內容介紹了“Spring怎么為singleton bean注入prototype bean”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

環境

  • Ubuntu 22.04

  • IntelliJ IDEA 2022.1.3

  • JDK 17.0.3

  • Spring 5.3.21

準備

創建Maven項目 test0707

修改 pom.xml 文件,添加依賴:

        ......
        <!-- https://mvnrepository.com/artifact/junit/junit -->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.13.2</version>
            <scope>test</scope>
        </dependency>
        <!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-webmvc</artifactId>
            <version>5.3.21</version>
        </dependency>
        ......

創建如下POJO:

  • Book :Book接口;

  • PlayBook :Book實現類;

  • StudyBook :Book實現類;

  • Student1 :Student1持有Book;

package pojo;
public interface Book {
    public void show();
}
package pojo;
public class PlayBook implements Book{
    public PlayBook() {
        System.out.println("PlayBook constructor");
    }
    @Override
    public void show() {
        System.out.println("Play book!");
    }
}
package pojo;

public class StudyBook implements Book{
    public StudyBook() {
        System.out.println("StudyBook constructor");
    }
    @Override
    public void show() {
        System.out.println("Study book!");
    }
}
package pojo;

public class Student1 {
    private String name;
    private Book book;
    public void setName(String name) {
        this.name = name;
    }
    public void setBook(Book book) {
        this.book = book;
    }
    public Book getBook() {
        return book;
    }
    public Student1() {
        System.out.println("Student1 constructor");
    }
    public void readBook() {
        System.out.println("I am " + name);
        book.show();
    }
}

src/main/resources 目錄下創建 applicationContext.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"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd">

    <bean id="playBook" class="pojo.PlayBook" scope="prototype"/>

    <bean id="studyBook" class="pojo.StudyBook" scope="prototype"/>

    <bean id="student1" class="pojo.Student1">
        <property name="name" value="Jerry"/>
        <property name="book" ref="playBook"/>
    </bean>
</beans>

src/test/java 目錄下創建測試:

public class Test0707 {}

測試0

創建測試用例:

    @Test
    public void test0() {
        var ctx = new ClassPathXmlApplicationContext("applicationContext.xml");
    }

運行測試,如下:

Student1 constructor
PlayBook constructor

總結:

  • singleton的bean會在Spring初始化時創建實例(如本例中的 student1

  • ;prototype的bean不會在Spring初始化時創建實例(如本例中的 studyBook );若把A注入B(B是singleton),

  • 則A在Spring初始化時隨著B一起創建實例(如本例中的 playBook )。

  • 接上條,若把A注入B(B是singleton),如果A是singleton,則A在B之前創建實例。如果A是prototype,則A在B之后創建實例;

測試1

創建測試用例:

    @Test
    public void test1() {
        var ctx = new ClassPathXmlApplicationContext("applicationContext.xml");
        System.out.println("before getBean student1 playBook");
        var student1 = ctx.getBean("student1", Student1.class);
        var student2 = ctx.getBean("student1", Student1.class);
        System.out.println(student1 == student2);

        var book1 = ctx.getBean("playBook", PlayBook.class);
        var book2 = ctx.getBean("playBook", PlayBook.class);
        System.out.println(book1 == book2);
    }

運行測試,如下:

Student1 constructor
PlayBook constructor
before getBean student1 playBook
true
PlayBook constructor
PlayBook constructor
false

總結:

singleton的bean,只在Spring初始化時創建實例, getBean() 不會創建實例;prototype的bean,不在Spring初始化時創建實例(注入例外),每次 getBean() 都會創建實例;

測試2

創建測試用例:

    @Test
    public void test2() {
        var ctx = new ClassPathXmlApplicationContext("applicationContext.xml");
        System.out.println("before getBean student1");
        var student1 = ctx.getBean("student1", Student1.class);
        var student2 = ctx.getBean("student1", Student1.class);
        System.out.println(student1 == student2);
        System.out.println(student1.getBook() == student2.getBook());
    }

運行測試,如下:

Student1 constructor
PlayBook constructor
before getBean student1
true
true

總結:

把prototype的bean注入到singleton,多次調用 getBean() 獲取后者時,得到的是同一實例,同理,其持有的前者,也是同一實例。

測試3

多次調用 getBean() 方法獲取singleton bean時,對于所注入的prototype的bean,如果希望每次都獲取一個新的bean實例,可以使用 lookup-method 來配置。

例如:

        <lookup-method name="getBook" bean="playBook"/>

完整例子如下:

創建POJO Student2

package pojo;
public abstract class Student2 {
    private String name;
//    private Book book;
    public void setName(String name) {
        this.name = name;
    }
//    public void setBook(Book book) {
//        this.book = book;
//    }
//
//    public Book getBook() {
//        return book;
//    }
    public abstract Book getBook();
    public Student2() {
        System.out.println("Student2 constructor");
    }
    public void readBook() {
        System.out.println("I am " + name);
//        book.show();
        getBook().show();
    }
}

applicationContext.xml 文件中注冊bean:

    <bean id="student2" class="pojo.Student2">
        <property name="name" value="Jerry"/>
<!--        <property name="book" ref="playBook"/>-->
        <lookup-method name="getBook" bean="playBook"/>
    </bean>

創建測試用例:

    @Test
    public void test3() {
        var ctx = new ClassPathXmlApplicationContext("applicationContext.xml");
        System.out.println("before getBean student2");
        var student1 = ctx.getBean("student2", Student2.class);
        var student2 = ctx.getBean("student2", Student2.class);
        System.out.println(student1 == student2);
        System.out.println(student1.getBook() == student2.getBook());
    }

運行測試,如下:

......
Student2 constructor
before getBean student2
true
PlayBook constructor
PlayBook constructor
false

總結:

  • Student2 是抽象類, getBook() 是抽象方法;

  • Student2 并不持有Book,只需使用 getBook() 方法來得到Book;

  • 在Spring配置中使用 lookup-method 來指定方法名字( name 屬性)和所獲取的bean( bean 屬性);getBook() 是Spring實現的,相當于調用了

  • getBean() 方法來得到實例,所以每次都能獲取一個新的實例(當然前提是bean必須是prototype的);

  • singleton bean在Spring初始化時創建實例,lookup的bean不會隨著一起創建實例,只有在顯式調用lookup方法時才會 getBean() (類似懶加載);

“Spring怎么為singleton bean注入prototype bean”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

白水县| 江油市| 酉阳| 通辽市| 孙吴县| 河间市| 沧州市| 维西| 南乐县| 尚义县| 尖扎县| 永州市| 婺源县| 昌都县| 土默特左旗| 汉源县| 洛南县| 鞍山市| 图们市| 德钦县| 外汇| 舟山市| 嘉黎县| 绥德县| 大理市| 澄城县| 蓬安县| 洪泽县| 丹阳市| 三河市| 温泉县| 遂宁市| 大足县| 宣恩县| 盐亭县| 黑龙江省| 那曲县| 龙里县| 荆州市| 本溪| 三台县|