Spring Cloud Feign是否支持Spring MVC注释中的占位符?

时间:2016-03-09 17:26:50

标签: spring spring-mvc spring-cloud netflix-feign spring-cloud-netflix

我想使用占位符来定义请求的路径,如下所示。当我尝试请求时,似乎spring-cloud-feign无法将占位符与application.yml值交换。

@FeignClient("foo")
public interface FooClient{
    @RequestMapping(value = "${my.special.placeholder}",
            method = RequestMethod.GET,
            consumes = MediaType.APPLICATION_JSON_VALUE,
            produces = MediaType.APPLICATION_JSON_VALUE)
    ResponseEntity getSomeData(s);
}

0 个答案:

没有答案