@lazy 解决循环依赖

业务场景:在启动项目的时候,报错!

BeanCurrentlyInCreationException: Error creating bean with name 'MaintPlanService':
Requested bean is currently in creation: Is there an unresolvable circular reference?

解决方案

在注入MaintPlanService的前面添加 @lazy 注解,让其进行懒加载。
问题的本质原因是因为出现了循环依赖的的原因。

上一篇:自我介绍+软工5问


下一篇:react lazy----延迟加载组件