The dependencies of some of the beans in the application context form a cycle 解决方案

在项目集成Rancher流水线时遇到错误,提示应用上下文的某些bean形成了循环依赖。具体涉及servletEndpointRegistrar、healthEndpoint、DataSourceHealthIndicatorAutoConfiguration等。解决方案包括在MongoAutoConfiguration类中取消mongodb的自动配置注解,并在Application启动类中排除DataSourceAutoConfiguration,同时新增了@EnableAutoConfiguration注解,问题得到解决。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

工作中Rancher流水线集成报错:

***************************
APPLICATION FAILED TO START
***************************

Description:

The dependencies of some of the beans in the application context form a cycle:

   servletEndpointRegistrar defined in class path resource [org/springframework/boot/actuate/autoconfigure/endpoint/web/ServletEndpointManagementContextConfiguration.class]
      ↓
   healthEndpoint defined in class path resource [org/springframework/boot/actuate/autoconfigure/health/HealthEndpointConfiguration.class]
      ↓
   org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorAutoConfiguration
┌─────┐
|  dataSource
↑     ↓
|  scopedTarget.dataSource defined in class path resource [org/springframework/boot/autoconfigure/jdbc/DataSourceConfiguration$Hikari.class]
↑     ↓
|  org.springframework.boot.autoconfigure.jdbc.DataSourceInitializerInvoker

项目无法启动在一直循环加载

解决方案:

1.  在 XXXXXX/dao/mongodb/config/MongoAutoConfiguration.java 配置类中

把mongodb的配置类中的自动配置取消掉

@Configuration
//@EnableAutoConfiguration               删除(注释掉了)
public class MongoAutoConfiguration {
 

2. 在 xxxx/Application.java 项目启动类中新增自动配置注解:

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;      新增
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;     新增
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
import org.springframework.cloud.openfeign.EnableFeignClients;
import org.springframework.scheduling.annotation.EnableScheduling;


@SpringBootApplication
@EnableAutoConfiguration(exclude = {DataSourceAutoConfiguration.class})   新增
@EnableScheduling
@EnableFeignClients     //这是新增的注解 表示开启feign
@EnableEurekaClient

xxxxxxxxxxxxxxx

修改后,重启项目,问题解决!
 

回答: 当在Spring初始化bean的过程中,如果存在循环依赖的情况,就会出现"The dependencies of some of the beans in the application context form a cycle"的错误。这个错误表示应用程序上下文中的一些bean存在循环依赖关系。\[2\]\[3\]循环依赖是指两个或多个bean之间相互依赖,形成一个闭环。在这种情况下,Spring无法确定先初始化哪个bean,因此会导致循环依赖错误的发生。为了解决这个问题,可以使用@Lazy注解来延迟加载其中一个bean,从而打破循环依赖关系。\[1\]在代码中,可以使用@Autowired和@Lazy注解来标记需要延迟加载的bean,例如:@Autowired @Lazy private MqttAcceptClient mqttAcceptClient; 这样就可以解决Spring在初始化bean时不知道先初始化哪个的问题。 #### 引用[.reference_title] - *1* *3* [【报错解决】The dependencies of some of the beans in the application context form a cycle:](https://blog.csdn.net/weixin_44361204/article/details/123778790)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insert_down1,239^v3^insert_chatgpt"}} ] [.reference_item] - *2* [The dependencies of some of the beans in the application context form a cycle 解决方案](https://blog.csdn.net/weixin_46044901/article/details/122826554)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insert_down1,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值