微服务中使用openfeign调用get请求注意事项
当使用openfeign发送get请求的时候总会遇到一些奇怪的问题,现在整理如下:一.代码的实现方式如下,接口声明都是普通的get请求,请求参数没有做任何的处理:客户端控制层@RestControllerpublic class HelloController {@Autowiredprivate HelloService helloService;@GetMapping("hello")publ
·
当使用openfeign发送get请求的时候总会遇到一些奇怪的问题,现在整理如下:
一.代码的实现方式如下,接口声明都是普通的get请求,请求参数没有做任何的处理:
客户端控制层
@RestController
public class HelloController {
@Autowired
private HelloService helloService;
@GetMapping("hello")
public String hello( String id){
return helloService.getPaymentById(id);
}
}
@FeignClient(contextId ="provider",value = "nacos-hello-provider")
public interface HelloService {
/**
*
* @param id
* @return
*/
@GetMapping(value = "/hello/get")
String getPaymentById(String id);
}
远程被调用接口代码
@RestController
@RequestMapping("hello")
public class HelloController {
@GetMapping("/get")
public String hello(String id){
return "请求成功,收到的参数是:"+id;
}
结论:
【1】测试报错,后端日志状态 405
【2】如果此时将远程接口的@GetMapping换成 @RequestMapping如下图,再次请求测试,没有报错,但是参数没有接收到,这里猜测是openfeign将get请求转成了post请求
@RestController
@RequestMapping("hello")
public class HelloController {
@RequestMapping("/get")
public String hello(String id){
return "请求成功,收到的参数是:"+id;
}
【3】如果将声明的接口的参数声明一个 @RequestParam("id") ,然后测试,远程接口正常访问,接口可以接收到参数
@FeignClient(contextId ="provider",value = "nacos-hello-provider")
public interface HelloService {
/**
*
* @param id
* @return
*/
@GetMapping(value = "/hello/get")
String getPaymentById(@RequestParam("id") String id);
}
结论就是:当使用openFeign发送get请求的时候,要在声明的接口中需要使用 @RequestParam 注解 或者 restful相关注解 确定映射关系 否则报错 405
更多推荐
已为社区贡献1条内容
所有评论(0)