bug记录——The bean ‘xxx.FeignClientSpecification‘ could not be registered.

在这里插入图片描述

问题描述

在一个项目中,用了两个feign,这两个feign都走了网关,当启动项目时,启动失败,并且报错:

The bean ‘petCF-gateway.FeignClientSpecification’ could not be registered. A bean with that name has already been defined and overriding is disabled.

bug记录——The bean ‘xxx.FeignClientSpecification‘ could not be registered._第1张图片

问题分析

这个问题本质是由于springIoc容器中Java对象时单例导致的,不能有两个一样的对象放到springIoc容器中,所以,这里面就报错,是因为spring容器中有了petCF-gateway.FeignClientSpecification这个bean,然后又来了一个。

解决方案

所以这个问题的解决方案有两个,

(1)contextId

解决方案(1):让这两个petCF-gateway.FeignClientSpecification不一样,所以可以加一个contextId,要保证两个不一样

bug记录——The bean ‘xxx.FeignClientSpecification‘ could not be registered._第2张图片

@FeignClient(name = "petCF-gateway",
        path = "mall-order",contextId = "1")

(2)spring.main.allow-bean-definition-overriding=true

解决方案(2):spring也给了一个解决方案,就是允许bean的覆盖,这样后面加载进来的会把前面的覆盖掉,这样就能启动成功了

bug记录——The bean ‘xxx.FeignClientSpecification‘ could not be registered._第3张图片

logging:
  level:
    com.tianju.mall: debug


spring:
  # 解决一个项目里面 @FeignClient(name = "petCF-gateway",path = "mall-order")的方法
  # 另一种方式:指定一下contextId
  # @FeignClient(name="finance-server-gateway",path = "finance-server-product",contextId = "ProductFeign")
  main:
    allow-bean-definition-overriding: true

  thymeleaf:
    prefix:  classpath:/html/

bug记录——The bean ‘xxx.FeignClientSpecification‘ could not be registered._第4张图片

总结

简单粗暴的方法,允许bean定义重写
setting spring.main.allow-bean-definition-overriding=true

你可能感兴趣的:(Program,bug,bug)