编程语言
首页 > 编程语言> > java-Spring Boot Actuator FlywayEndpoint不适用于多个Flyway Bean

java-Spring Boot Actuator FlywayEndpoint不适用于多个Flyway Bean

作者:互联网

我正在尝试将当前正在处理的项目从Spring Boot 1.2.8升级到最新版本(1.4.0).我发现,从1.3.0版开始,Spring Boot Actuator将Flyway迁移作为Actuator端点公开.该端点将单个Flyway bean作为参数.

https://github.com/spring-projects/spring-boot/blob/master/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/autoconfigure/EndpointAutoConfiguration.java#L187

我的项目使用多个Flyway Bean管理许多数据库的迁移,当我尝试启动该应用程序时,Spring抱怨NoUniqueBeanDefinitionException.

当我禁用EndpointAutoconfiguration时,将正确创建上下文.目前我不一定需要Flyway端点,但是我们确实有其他端点可用于监视,因此我不想禁用所有端点.我尝试使用以下方式禁用application.properties文件中的flyway端点

endpoints.flyway.enabled=false

但是Spring仍然抱怨(我认为它无论如何都会尝试创建终结点bean,并且’enabled’属性用于确定运行时终结点的可用性).

我认为当前我唯一的选择是手动启用我需要的端点并禁用自动配置.那正确吗?

还有,为什么有一个原因,为什么FlywayEndpoint仅适用于存在的单个Flyway bean?据我了解,构造函数可以只获取一个Flyway bean列表,然后invoke()方法可以遍历它们.

https://github.com/spring-projects/spring-boot/blob/master/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/FlywayEndpoint.java#L54

解决方法:

I think currently my only option is to manually enable the endpoints that I need and disable autoconfiguration. Is that right?

是的,我认为是正确的.您看到的行为是一个错误,所以我打开了an issue.我们将在1.4.1和1.3.8中修复它.

And also, is there a reason, why the FlywayEndpoint only works with a single Flyway bean present?

除了我们没有考虑您的用例之外,没有其他原因.我已经为端点打开了an enhancement,以支持多个Flyway Bean(Liquibase也是如此).

标签:spring-boot-actuator,spring-boot,java
来源: https://codeday.me/bug/20191118/2027153.html