您好,登錄后才能下訂單哦!
這篇文章主要介紹了Spring工廠特性有哪些,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
工廠創建之后,會將Spring配置文件中的所有對象都創建完成(餓漢式)。
提高程序運行效率。避免多次IO,減少對象創建時間。(概念接近連接池,一次性創建好,使用時直接獲取)
自定義初始化方法:添加“init-method”屬性,Spring則會在創建對象之后,調用此方法。
自定義銷毀方法:添加“destroy-method”屬性,Spring則會在銷毀對象之前,調用此方法。
銷毀:工廠的close()方法被調用之后,Spring會毀掉所有已創建的單例對象。
分類: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
隨工廠啟動創建 ==》 構造方法 ==》 set方法(注入值) ==》 init(初始化) ==》 構建完成 ==》隨工廠關閉銷毀
多例bean:prototype
被使用時創建 ==》 構造方法 ==》 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("執行了無參構造"); } 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工廠特性有哪些”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。