说明 更新新的工作插件,工作空间 启动项目报错
Error creating bean with name 'xxxxxx': Requested bean is currently in creation: Is there an unresolvable circular reference?
原因之一(占比大多数):
service 实现自己注入了自己的接口导致的,例如:
正常代码是实现接口后直接重新或者方法名称直调就行不用再次注入直接的接口这种错误的写法
解决办法我这边粗浅的有两种
1. 把循环依赖的注入给去掉(因为人家Srping 不推荐使用,现在是直接拒绝,之前还能用,让你启动都启动不起来)
2. 如果是项目比较老旧而且循环依赖比较多改起来头皮发麻,那就直接在配置文件application.yml 配置添加 allow-circular-references: true 属性位置上代码文章来源:https://www.toymoban.com/news/detail-633765.html
spring:
main:
allow-circular-references: true
application:
name: app
粗暴的解决循环依赖的问题(这种解决方式用起来很爽,我才不管什么饮鸩止渴)文章来源地址https://www.toymoban.com/news/detail-633765.html
到了这里,关于Requested bean is currently in creation: Is there an unresolvable circular reference? 原因之一(java)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!