SpringCloud openfeign @FeignClient注解的path参数不起作用?

本地测试时发现,请求http://localhost:9999/addLabel是可以的,
请求http://localhost:9999/cms/addLabel会报404。

接口是这样写的

@FeignClient(name = "image-server" path = "/cms")  
public interface ImageLabelServiceCmsFeign {  
  
  @PostMapping(value = "/addLabel")  
  Result<Void> addLabel(  
            @RequestParam(name = "parentLabelId") Integer parentLabelId,  
            @RequestParam(name = "labelName") String labelName);
}

服务实现是这样的

@RestController
public class ImageLabelServiceCmsFeignImpl implements ImageLabelServiceCmsFeign {
    @Override  
    public Result<Void> addLabel(Integer parentLabelId, String labelName) {
        // ...
    }
}

启动类是这样的

@EnableFeignClients(basePackages = {"com.xx"})  
@SpringBootApplication  
public class Application implements InitializingBean {  
  
 public static void main(String[] args) {  
  
    new SpringApplicationBuilder().sources(Application.class)  
            .web(WebApplicationType.SERVLET)  
            .run(args);  
    }
}

项目的依赖是这样的,使用了eureka作为服务注册中心。

<dependency>  
    <groupId>org.springframework.boot</groupId>  
    <artifactId>spring-boot-starter-web</artifactId>  
    <version>2.1.0.RELEASE</version>  
</dependency>

<!-- spring cloud -->  
<dependency>  
    <groupId>org.springframework.cloud</groupId>  
    <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>  
    <version>2.1.0.RELEASE</version>  
</dependency>  
<dependency>  
    <groupId>org.springframework.cloud</groupId>  
    <artifactId>spring-cloud-starter-openfeign</artifactId>  
    <version>2.1.0.RELEASE</version>  
</dependency>

FeignClient是一个“客户端”,它是用来发起请求的,不是提供服务的。
你配置FeignClient的path只影响它去请求的地址,不影响服务的地址,如果你的服务路径没有那个/cms自然就请求不到了

接口改成这样,实现不变(推荐)

@FeignClient(name = "image-server")//①去掉path参数
@RequestMapping("/cms")//②增加注解
public interface ImageLabelServiceCmsFeign {  
  
  @PostMapping(value = "/addLabel")  
  Result<Void> addLabel(  
            @RequestParam(name = "parentLabelId") Integer parentLabelId,  
            @RequestParam(name = "labelName") String labelName);
}

或者接口不变,实现类加@RequestMapping("/cms")也可以


@FeignClient的path参数只对FeignClient的请求路径起作用,不会对restcontroller实现起作用,而接口上的requestMapping(包括衍生的GetMapping之类)会同时对FeignClient和Restcontroller起作用

不加path参数的话FeignClient的请求路径和服务的路径是一致的,可以调用成功。加了path="/cms"参数后,要想两边路径一致,就需要在实现上加@RequestMapping("/cms")或配置项目的context-path=/cms使请求路径和服务路径一致

 

 

可以通过实现`FeignClientBuilderCustomizer`接口来实现在启动时修改`@FeignClient`注解的`name`属性值。 实现类示例: ```java import org.springframework.cloud.openfeign.FeignClientBuilder; import org.springframework.cloud.openfeign.annotation.FeignClient; import org.springframework.cloud.openfeign.support.SpringMvcContract; import org.springframework.context.annotation.Configuration; @Configuration public class FeignClientCustomConfig implements FeignClientBuilderCustomizer { @Override public void customize(FeignClientBuilder builder) { // 获取所有的FeignClient接口 builder.build().getFeignContext().getInstances().forEach((name, feignClient) -> { // 判断是否有@FeignClient注解 if (feignClient.getTarget() != null && feignClient.getTarget().getClass().isAnnotationPresent(FeignClient.class)) { FeignClient feignClientAnnotation = feignClient.getTarget().getClass().getAnnotation(FeignClient.class); // 判断注解中的name属性是否需要修改 if ("original-name".equals(feignClientAnnotation.name())) { // 修改name属性值 FeignClient modifiedFeignClientAnnotation = new FeignClient() { @Override public Class<? extends Annotation> annotationType() { return FeignClient.class; } @Override public String name() { return "modified-name"; } @Override public String qualifier() { return feignClientAnnotation.qualifier(); } @Override public String url() { return feignClientAnnotation.url(); } @Override public boolean decode404() { return feignClientAnnotation.decode404(); } @Override public Class<?>[] configuration() { return feignClientAnnotation.configuration(); } @Override public Class<?> fallback() { return feignClientAnnotation.fallback(); } @Override public Class<?> fallbackFactory() { return feignClientAnnotation.fallbackFactory(); } @Override public boolean primary() { return feignClientAnnotation.primary(); } @Override public String contextId() { return feignClientAnnotation.contextId(); } @Override public boolean inheritParentContext() { return feignClientAnnotation.inheritParentContext(); } @Override public boolean defaultConfiguration() { return feignClientAnnotation.defaultConfiguration(); } @Override public Class<? extends Contract> contract() { return SpringMvcContract.class; } @Override public String[] path() { return feignClientAnnotation.path(); } }; // 修改注解的value属性值 ReflectionUtils.setField(ReflectionUtils.findField(feignClient.getTarget().getClass(), "val$feignClient"), feignClient.getTarget(), modifiedFeignClientAnnotation); } } }); } } ``` 在该实现类中,重写了`customize`方法,在该方法中获取所有的`FeignClient`接口并遍历,判断是否有`@FeignClient`注解,如果有则判断注解中的`name`属性是否需要修改,如果需要则创建一个新的注解实例并修改`name`属性值,最后通过反射修改原来的`@FeignClient`注解实例中的`value`属性值。 注意:由于`@FeignClient`注解中的`name`属性是被`value`属性覆盖的,所以这里修改的是`value`属性值而不是`name`属性值。
评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值