JeecgBoot通过jenkins构建的jar包启动报错
【JeecgBoot】在jenkins里面构建的jar包启动报错
启动jeecgBoot网关,在本地很正常,但通过jenkins打包后,放到linux中启动报以下错误:
Error starting ApplicationContext. To display the conditions report re-run your application with ‘debug’ enabled.
2022-08-03 15:41:53.781 [main] [1;31mERROR[0;39m [36mo.s.b.diagnostics.LoggingFailureAnalysisReporter:40[0;39m –
APPLICATION FAILED TO START
Description:
Parameter 0 of constructor in org.jeecg.starter.cloud.feign.impl.JeecgFeignService required a single bean, but 2 were found:
– feignDecoder: defined by method ‘feignDecoder’ in class path resource [org/springframework/cloud/openfeign/FeignClientsConfiguration.class]
– starterFeignDecoder: defined by method ‘feignDecoder’ in class path resource [org/jeecg/config/FeignConfig.class]
Action:
Consider marking one of the beans as @Primary, updating the consumer to accept multiple beans, or using @Qualifier to identify the bean that should be consumed
解决方法
1:org.jeecg.starter.cloud.feign.impl.JeecgFeignService中的代码需要全部注释。
2:在jeecg-boot-starter-cloud工程bootstrap.yml文件中添加如下配置:
spring:
#升级SpringBoot2.6.6,允许循环依赖
main:
allow-circular-references: true
allow-bean-definition-overriding: true #声明spring框架是否允许定义重名的bean对象覆盖原有的bean (spring boot默认是false)。
3:重新打包,再次启动即可。