關于SpringBoot禁止循環(huán)依賴解說
前言:
Spring的Bean管理,一直是整個體系中津津樂道的東西。尤其是Bean的循環(huán)依賴,更是很多面試官最喜歡考察的2B知識點之一。
但事實上,項目中存在Bean的循環(huán)依賴,是代碼質量低下的表現。多數人寄希望于框架層來給擦屁股,造成了整個代碼的設計越來越糟,最后用一些奇技淫巧來填補犯下的錯誤。
還好,SpringBoot終于受不了這種濫用,默認把循環(huán)依賴給禁用了!
從2.6版本開始,如果你的項目里還存在循環(huán)依賴,SpringBoot將拒絕啟動!

驗證代碼小片段:
為了驗證這個功能,我們只需要兩段小代碼。
CircularDependencyA.java
@Component
@RequiredArgsConstructor
public?class?CircularDependencyA?{
????private?final?CircularDependencyB?circB;
}CircularDependencyB.java
@Component
@RequiredArgsConstructor
public?class?CircularDependencyB?{
????private?final?CircularDependencyA?circA;
}RequiredArgsConstructor注解,是lombok包里面的,用來實現簡單的構造器注入。不出所料,當我們啟動代碼的時候,報錯了~~
報錯如下:
The dependencies of some of the beans in the application context form a cycle:
┌─────┐
| circularDependencyA defined in file [cir/CircularDependencyA.class]
↑ ↓
| circularDependencyB defined in file [cir/CircularDependencyB.class]
└─────┘
Action:
Relying upon circular references is discouraged and they are prohibited by default. Update your application to remove the dependency cycle between beans. As a last resort, it may be possible to break the cycle automatically by setting spring.main.allow-circular-references to true.
當然,有些鳥人已經玩大了,循環(huán)依賴到處都是,改代碼變的越來越不現實。那你還可以通過在yaml里配置參數來臨時開啟循環(huán)依賴。
spring.main.allow-circular-references=true
看來SpringBoot對惡勢力的容忍能力還是不夠堅決??!
繞過SpringBoot這個攔截的方法不止一種,比如使用@Lazy注解進行延遲初始化。但這些都是治標不治本,辜負了SpringBoot的一片苦心。
做對的事:
其實,我們一直把代碼往下找下去,會發(fā)現這個開關,其實是Spring的功能。
AbstractAutowireCapableBeanFactory#allowCircularReferences /**?Whether?to?automatically?try?to?resolve?circular?references?between?beans.?*/ private?boolean?allowCircularReferences?=?true;
很長一段時間,SpringBoot這個值都是默認為true的。但這種縱容造成了大批低質量的代碼產生,以至于新員工一直在給老員工擦屁股。
把這個值默認設置為false,是堅持做對的事情。起碼,在工程師編寫出質量不高的代碼時,能夠知道他自己在做什么,而不是把隱患一步步的推遲,任代碼腐敗。
不得不為SpringBoot點個贊。真棒!
到此這篇關于關于SpringBoot禁止循環(huán)依賴解說的文章就介紹到這了,更多相關SpringBoot循環(huán)依賴內容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關文章希望大家以后多多支持腳本之家!
相關文章
SpringMVC中解決@ResponseBody注解返回中文亂碼問題
這篇文章主要介紹了SpringMVC中解決@ResponseBody注解返回中文亂碼問題, 小編覺得挺不錯的,現在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2017-04-04
java.net.SocketException: Connection reset 解決方法
最近糾結致死的一個java報錯java.net.SocketException: Connection reset 終于得到解決2013-03-03
詳解springboot?springsecuroty中的注銷和權限控制問題
這篇文章主要介紹了springboot-springsecuroty?注銷和權限控制,賬戶注銷需要在SecurityConfig中加入開啟注銷功能的代碼,權限控制要導入springsecurity和thymeleaf的整合依賴,本文通過實例代碼給大家介紹的非常詳細,需要的朋友參考下吧2022-03-03
springboot中報錯Invalid character found in
這篇文章主要介紹了springboot中報錯Invalid character found in the request的解決方案,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2022-09-09
Spring?@Cacheable注解類內部調用失效的解決方案
這篇文章主要介紹了Spring?@Cacheable注解類內部調用失效的解決方案,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2022-01-01

