feignClient注入失败

新建的服务提供feign调用时,调用方无法注入提供方的feign。大致的报错信息:

no qualifying bean of type available

调用方的启动类注解

@ComponentScan({"com.plumelog","com.admin.**"})
@SpringBootApplication
public class AdminApplication {

提供方启动类注解

@ComponentScan({"com.plumelog","com.push.service.**"})
@EnableFeignClients(basePackages = "com.**")
@SpringBootApplication
public class PushServiceApplication {

发现调用方没有

@EnableFeignClients(basePackages = "com.**") 注解,于是调用方加上这个注解后,报其他错误:
***************************
APPLICATION FAILED TO START
***************************

Description:

The bean 'authentication-feign.FeignClientSpecification' could not be registered. A bean with that name has already been defined and overriding is disabled.

Action:

Consider renaming one of the beans or enabling overriding by setting spring.main.allow-bean-definition-overriding=true

大致意思是,已经存在这个bean了,是否配置 spring.main.allow-bean-definition-overriding=true

去覆盖它,然后加上此配置后报其他的feign注入失败。

报错原因分析:

定位到authentication-feign,查看该服务在feign下提供了自动装配,项目启动时自动注入,如果调用方启动类加上@EnableFeifnClients注解就会注入两次bean,所以在调用方不需要@EnableFeifnClients注解。但是不配置自动装配就要依赖@EnableFeifnClients注解,这就互相矛盾了。

@Configuration
@EnableFeignClients(basePackages = "com.authorization.client.feign")
@ComponentScan(basePackages = "com.authorization.client.feign")
public class ClientAutoConfiguration {

解决方案:在新服务的feign包下也加上自动装配配置。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值