从另一个项目注入 FeignClient 时出错

Error Injecting FeignClient from another Project

我在自动连接另一个项目的假客户端时遇到问题。似乎没有生成和注入 feign 客户端的实现。

这是我遇到的错误。

org.springframework.beans.factory.BeanCreationException: 
Error creating bean with name 'passportRestController': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: 
Could not autowire field: private com.wstrater.service.contacts.client.ContactService com.wstrater.service.passport.server.controllers.PassportRestController.contactService; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: 
No qualifying bean of type [com.wstrater.service.contacts.client.ContactService] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: 
{@org.springframework.beans.factory.annotation.Autowired(required=true)}

假装客户端非常简单。为了简洁起见,我删除了导入。

package com.wstrater.service.contacts.client;

@FeignClient("contact-service")
public interface ContactService {

  @RequestMapping(method = RequestMethod.GET, value = ContactConstants.CONTACTS_USER_ID_PATH)
  public Collection<Contact> contactsByUserId(@PathVariable("userId") String userId);

}

我将组件扫描添加到我的项目中,以包括应用程序及其控制器,并在其他项目中包括假装客户端。

package com.wstrater.service.passport.server;

@EnableEurekaClient
@EnableFeignClients
@SpringCloudApplication
@ComponentScan({"com.wstrater.service.passport.server",
                "com.wstrater.service.contacts.client"})
public class PassportServiceApplication {

  public static void main(String[] args) {
    ApplicationContext ctx = SpringApplication.run(PassportServiceApplication.class, args);
  }

}

为简洁起见删除了大部分导入的其余控制器。

package com.wstrater.service.passport.server.controllers;

import com.wstrater.service.contacts.client.ContactService;

@RestController
public class PassportRestController {

  @Autowired
  private ContactService contactService;

  @RequestMapping(PassportContstants.PASSPORT_USER_ID_PATH)
  public ResponseEntity<Passport> passportByUserId(@PathVariable String userId) {
    ResponseEntity<Passport> ret = null;

    Collection<Contact> contacts = contactService.contactsByUserId(userId);
    if (contacts == null || contacts.isEmpty()) {
      ret = new ResponseEntity(HttpStatus.NOT_FOUND);
    } else {
      ret = ResponseEntity.ok(new Passport(contacts));
    }

    return ret;
  }

}

我曾尝试在不同的项目和不同的包中定义假装客户端接口,只有当它与应用程序放在同一个包中时才看到成功。这让人相信这是一个组件扫描问题,即使我在扫描中包含了包。我想在共享项目中保留假客户端接口以定义可重用的 "contract" 并且每个项目都有一个独特的包结构而不是定义假客户端与使用它的应用程序。

谢谢,韦斯

您需要告诉 Feign 扫描器在哪里找到接口。

您可以使用 @EnableFeignClients(basePackages = {"my.external.feign.client.package", "my.local.package"}).

直接Class/Interface名字可以像下面这样给出

@EnableFeignClients(basePackageClasses=com.abc.xxx.client.XXFeignClient.class)

此参数接受单个或多个class名称

我的主要 class 在包 "com.abc.myservicename" 中,我的主要 class 名字是 "myservicename.java"。我在主 class.

中使用 @SpringBootApplication(scanBasePackages="com.abc") 注释

将主要 class 包名称更改为 "com.abc" 已解决我的问题。

感谢您的帮助。我在中添加了正确的外部包 @EnableFeignClients(basePackages = {}) 它仍然没有获取假客户端实现。

我有一个 PACT 合同测试,我在其中自动装配 api 客户端 bean。我用过 @ExtendWith(SpringExtension.class) 这就是问题所在。 我替换为 @SpringBootTest,这允许在这个 class

中暴露假客户端 bean