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

猜你喜欢

转载自blog.csdn.net/qq_36874292/article/details/80406951