启动报错org.springframework.beans.factory.BeanCurrentlyInCreationException: Error creating bean xxx
今天写代码,一顿操作,封装等待。启动发现报错了,翻车现场。。。我的项目中代码@Componentpublic class A { @Autowired private B b;}@Componentpublic class B { @Autowired private A a;}显然,出现了循环依赖。解决方案1. 设计层面解决各业务层面的类做好分层,只有一个方向依赖关系,从根本上消灭循环依赖。比如 Controller -> Service ->