您好,登錄后才能下訂單哦!
本篇內容介紹了“Spring循環依賴原理實例分析”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
概述
@Autowired進行屬性注入可以解決循環依賴。原理是:Spring控制了bean的生命周期,先實例化bean,后注入bean的屬性。Spring中記錄了正在創建中的bean(已經實例化但還沒初始化完畢的bean),所以可以在注入屬性時,從記錄的bean中取依賴的對象。
相對而言,單純使用構造器注入就無法解決循環依賴。因為,在構造時就需要傳入依賴的對象,導致無法實例化。(注意:構造器注入可以使用@Lazy解決循環依賴,在實例化時,傳入代理對象,真正使用時才會生成真正的對象)
代碼
package com.example.tmp; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; @Component public class A { @Autowired private B b; private String name = "Tony"; public String getName() { return name; } public void setName(String name) { this.name = name; } public String getTest() { return b.getAge().toString() + name; } }
package com.example.tmp; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; @Component public class B { @Autowired private A a; private Integer age = 20; public Integer getAge() { return age; } public void setAge(Integer age) { this.age = age; } }
package com.example.controller; import com.example.tmp.A; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; @RestController public class HelloController { @Autowired private A a; @GetMapping("/test1") public String test1() { return a.getTest(); } }
1.啟動不報錯。
2.postman訪問:http://localhost:8080/test1
后端結果:不報錯
postman結果: 20Tony
“Spring循環依賴原理實例分析”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。