如何为同一个 Feign 客户端界面的不同配置文件切换 2 个注释?
我使用了一个 Feign 客户端接口,它在与负载均衡器 url 一起使用时具有以下代码。我称之为非尤里卡供参考:
@FeignClient(name = "DEPOSIT-FEIGN-CLIENT", url = "${DEPOSIT-DATA-URL}")
public interface DepositFeignClient {
@RequestMapping(method = RequestMethod.GET, value = "/path/to/api/{accountNumber}", produces = MediaType.APPLICATION_JSON_VALUE, consumes = MediaType.APPLICATION_JSON_VALUE)
DepositResponse getDepositDetails(@PathVariable(value = "accountNumber") String accountNumber);
}
另一方面,我在使用 Eureka 和 Spring Cloud Gateway 时使用以下代码:
@FeignClient(value = "ABCD-GATEWAY", path = "${DEPOSIT-EUREKA-APPNAME}")
public interface DepositFeignClient {
@RequestMapping(method = RequestMethod.GET, value = "/path/to/api/{accountNumber}", produces = MediaType.APPLICATION_JSON_VALUE, consumes = MediaType.APPLICATION_JSON_VALUE)
DepositResponse getDepositDetails(@PathVariable(value = "accountNumber") String accountNumber);
}
现在我的要求是通过诸如 Spring Profile 之类的东西来控制它们,这样如果配置文件名称 =“Eureka”,则 Eureka 注释处于活动状态,否则非 Eureka 处于活动状态。
我必须以某种方式在单个接口名称中执行此操作,因为我使用它如下:
private final DepositFeignClient depositFeignClient;
//other code
DepositResponse depResponse =
depositFeignClient.getDepositDetails(accountNumber);
//other code
请让我知道是否以某种方式使用@Profile, @ConditionalOnProperty
或其他任何方法有助于解决我的目的。我正在使用 Spring-boot 2.x 和 Java 8
编辑
请注意在 Eureka 案例中我使用path
和value
属性,在非 Eureka 案例中我使用 name 和 url 属性,这就是问题所在。