feign 问题:Request method 'POST' not supported

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/wuzhong8809/article/details/85159092

    @RequestLine("GET /cache/echo")
    Map<String, String> echo(@Param("data") String data);

报错:Request method 'POST' not supported

正确写法:
    @RequestLine("GET /cache/echo?data={data}")
    Map<String, String> echo(@Param("data") String data);

参考资料:

https://github.com/OpenFeign/feign

(PS:百度了一圈方案试了都不行,应该第一时间看官方方档)

猜你喜欢

转载自blog.csdn.net/wuzhong8809/article/details/85159092
今日推荐