Feign 请求动态URL

本文介绍了如何在FeignClient中正确使用@RequestLine注解,避免直接写URL,以及如何通过@FeignClientConfiguration和依赖注入管理Decoder和Encoder。示例展示了如何构造FeignClient实例并调用API。
摘要由CSDN通过智能技术生成
  1. FeignClient 中不要写url, 使用 @RequestLine修饰方法

  2. 调用地方必须引入 FeignClientConfiguration, 必须有Decoder, Encoder

  3. 调用类必须以构建函数(Constructor) 的方式注入 FeignClient 类

  4. 传入URL作为参数;

代码如下:

FeignClient类:

@FeignClient(name = "xxxxClient")



public interface XxxFeignClient {

    @RequestLine("POST")


    ResponseDto notifySomething(URI baseUri, ApproveNotifyDto notifyDto);


    @RequestLine("GET")


    ResponseDto getSomething(URI baseUri, XxxDto xxxDto);

}

ClientCaller类

@Slf4j
@Component
@Import(FeignClientsConfiguration.class)
public class CallerService {

    private XxxFeignClient xxxFeignClient;

    @Autowired

    public CallerService(Decoder decoder, Encoder encoder) {

        xxxFeignClient = Feign.builder()
                //.client(client)
                .encoder(encoder)
				.decoder(decoder)
                .target(Target.EmptyTarget.create(XxxFeignClient.class));
    }


    public ResponseDto notifySomething(String url, XxxxDto dto) throws URISyntaxException {

        return xxxFeignClient.notifySomething(new URI(url), dto);

    }


    public String test() throws URISyntaxException {

        String url = "http://localhost:9104/";

        return xxxFeignClient.getSomething(new URI(url));
    }
}

测试成功. 有点蛋疼.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值