1. 程式人生 > >SpringBoot中service注入失敗(A component required a bean of type 'XXService' that could)

SpringBoot中service注入失敗(A component required a bean of type 'XXService' that could)

本人的錯誤原因是:entity,service,serviceImpl,controller等這些包和Application.java     SpringBoot程式的入口不在同一個包且不在Application.java的子包中。

原因是:SpringBoot執行時所載入的包是Application.java本包及其子包的程式碼。所以根本掃描不到其他包,你怎麼改註解都是錯誤的。

參考文章:https://blog.csdn.net/daxiang52/article/details/79310889