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 addLabel(  
            @RequestParam(name = "parentLabelId") Integer parentLabelId,  
            @RequestParam(name = "labelName") String labelName);
}

服务实现是这样的

@RestController
public class ImageLabelServiceCmsFeignImpl implements ImageLabelServiceCmsFeign {
    @Override  
    public Result 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作为服务注册中心。

  
    org.springframework.boot  
    spring-boot-starter-web  
    2.1.0.RELEASE  


  
  
    org.springframework.cloud  
    spring-cloud-starter-netflix-eureka-client  
    2.1.0.RELEASE  
  
  
    org.springframework.cloud  
    spring-cloud-starter-openfeign  
    2.1.0.RELEASE  

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

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

@FeignClient(name = "image-server")//①去掉path参数
@RequestMapping("/cms")//②增加注解
public interface ImageLabelServiceCmsFeign {  
  
  @PostMapping(value = "/addLabel")  
  Result 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使请求路径和服务路径一致

 

 

你可能感兴趣的:(Spring,Cloud)