springboot启动报错Bean with name ‘xxxxService‘ has been injected into other beans快速处理方式
# 项目启动报错 Bean with name ‘xxxxService‘ has been injected into other beans,是因为循环依赖问题,最好的方法是重构代码进行解耦,不过一般因为代码可能是其他人写的不敢妄动,所以直接使用 @Lazy 进行懒加载处理,如下报错 # 解决办法: 


