springboot相互依赖报错问题
Paroxetiner 人气:0springboot相互依赖报错
昨天在辛劳的进行代码搬运工作的时候,发现springboot项目的一个新建模块中service层的各个注解都变成了黑色,正常情况下应该是黄色的。
我觉得可能是一些springboot的相关组件没有引入pom文件
所以我对照着原来的模块直接复制了一些依赖
就出现了一个新大陆的报错
Error:java: Annotation processing is not supported for module cycles. Please ensure that all modules from cycle [core,dao,service] are excluded from annotation processing .
经过反复咀嚼各大网站大佬的不食烟火的回答
我确定了
这,就是一个叫做“相互依赖”的错误,称之为依赖死循环
解决方法
打开相互依赖的模块的pom,删掉其中一个对另一个的依赖就行了
那怎么更明确的知道是哪几个模块相互依赖了呢
1.
然后看到右边有红色的包依赖报错
2.红色框的就是两个模块之间互相依赖 、处理模块之间的依赖关系(模块之间不能有依赖)
3.右键不想不依赖的包选中open module setting这个选项
springboot项目处理循环依赖问题(circular reference)
springBoot启动失败,报错BeanCurrentlyInCreationException
org.springframework.beans.factory.BeanCurrentlyInCreationException:
Error creating bean with name 'AxxxxService':
Bean with name 'BxxxxService'
has been injected into other beans [CxxxxService] in its raw version as part of a circular reference,
but has eventually been wrapped. This means that said other beans do not use the final version of the bean. This is often the result of over-eager type matching -
consider using 'getBeanNamesOfType' with the 'allowEagerInit' flag turned off, for example.
解决方法
- 找到中括号中的Service: CxxxxService
- 在CxxxxService中找到 BxxxxService(离得最近的,如果看不懂英文的话)的声明
- 在BxxxService的声明上加注解 @Lazy
- 注: 如果中括号中不止一个CxxxxService,每个都要这样做,加上@Lazy
悔恨
- 我没有一开始就百度,解决方案,而是自以为是地组装新的Service类
- 今天遇到一个中括号里有多个类的,要改的多了,就搜索一下人家的解决方案,流下了悔恨的眼泪
- 现在才把代码调整回去了,已经晚上10点多了
- 本来想试试revert, 过去太久,太多commit了,害怕了,退缩了
以上为个人经验,希望能给大家一个参考,也希望大家多多支持。
加载全部内容