溫馨提示×

溫馨提示×

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

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

Spring中工廠模式的特性是什么

發(fā)布時間:2022-02-28 11:24:17 來源:億速云 閱讀:114 作者:小新 欄目:開發(fā)技術

這篇文章主要介紹Spring中工廠模式的特性是什么,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

一、餓漢式創(chuàng)建優(yōu)勢

工廠創(chuàng)建之后,會將Spring配置文件中的所有對象都創(chuàng)建完成(餓漢式)。

提高程序運行效率。避免多次IO,減少對象創(chuàng)建時間。(概念接近連接池,一次性創(chuàng)建好,使用時直接獲取)

二、生命周期方法

  • 自定義初始化方法:添加“init-method”屬性,Spring則會在創(chuàng)建對象之后,調(diào)用此方法。

  • 自定義銷毀方法:添加“destroy-method”屬性,Spring則會在銷毀對象之前,調(diào)用此方法。

  • 銷毀:工廠的close()方法被調(diào)用之后,Spring會毀掉所有已創(chuàng)建的單例對象。

  • 分類:Singleton對象由Spring容器銷毀、Prototype對象由JVM銷毀。

三、生命周期注解

初始化注解、銷毀注解

import javax.annotation.PostConstruct;
import javax.annotation.PreDestroy;
 
@PostConstruct //初始化 
public void init(){
    System.out.println("init method executed");
}
 
@PreDestroy //銷毀
public void destroy(){
    System.out.println("destroy method executed");
}

四、生命周期階段

單例bean:singleton

隨工廠啟動創(chuàng)建 ==》 構造方法 ==》 set方法(注入值) ==》 init(初始化) ==》 構建完成 ==》隨工廠關閉銷毀

多例bean:prototype

被使用時創(chuàng)建 ==》 構造方法 ==》 set方法(注入值) ==》 init(初始化) ==》 構建完成 ==》JVM垃圾回收銷毀

五、用例

User實體類

package com.cos.qf.entity;
 
import javax.annotation.PostConstruct;
import javax.annotation.PreDestroy;
import java.util.*;
 
public class User {
    private Integer id;
    private String password;
    private String sex;
    private Integer age;
    private Date bornDate;
    private String[] hobbys;
    private Set<String> phones;
    private List<String> names;
    private Map<String,String> countries;
    private Properties files;
 
 
    @PostConstruct //初始化
    public void init(){
        System.out.println("被初始化了");
    }
 
    @PreDestroy //銷毀
    public void destroy(){
        System.out.println("被銷毀了");
    }
    
    public User() {
        System.out.println("執(zhí)行了無參構造");
    }
 
    public void setId(Integer id) {
        System.out.println("set-id");
        this.id = id;
    }
//get和set方法
}

application-config.xml配置文件

 <bean id="user" class="com.cos.qf.entity.User" autowire="byType" init-method="init" destroy-method="destroy">
</bean>

測試方法:不能用ClassPathXmlApplicationContext的父類(ApplicationContext)去關閉不然就報錯

 @Test
    public void text4() {
        ClassPathXmlApplicationContext ctx = new ClassPathXmlApplicationContext("application-config.xml");
        ctx.close();
    }

以上是“Spring中工廠模式的特性是什么”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關知識,歡迎關注億速云行業(yè)資訊頻道!

向AI問一下細節(jié)

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

AI