Configuration problem: Bean name 'xxxxx' is already used in this element spring例項重複注入

興趣使然的程式猿發表於2020-01-18

Exception in thread “main” org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Bean name ‘xxxxx’ is already used in this element

一個物件例項化了兩次,可能是配置檔案配置重複或者註解使用錯誤,解決辦法,刪除其中一個bean註解或者配置檔案重複。
此處還有坑:儘量不要去修改例項型別為prototype,會有各種坑,spring預設注入的是singleton。

相關文章