与人沟通,最重要的事情是听取没有说出来的话。——德拉克

今天使用open-feign发起请求时发现个问题,我特别喜欢的url参数传参不好使了:

1
2
3
4
5
@FeignClient("another-service")
public interface MyFeignClient {
@GetMapping("/foo/bar")
Foo<Bar> get(Foo bar);
}

对应我们的controller

1
2
3
4
5
@GetMapping("foo/bar")
public Foo<Bar> get(Foo bar) {
// ...
return foo;
}

然后发起了请求发现根本没收到参数。。。

但如果我们添加了注解@RequestParam

1
2
3
4
5
@FeignClient("another-service")
public interface MyFeignClient {
@GetMapping("/foo/bar")
Foo<Bar> get(@RequestParam Foo bar);
}

会发现项目启动抛出异常

1
Caused by: java.lang.IllegalStateException: RequestParam.value() was empty on parameter 0

说是没添加参数名,好我们添加一下

1
2
3
4
5
@FeignClient("another-service")
public interface MyFeignClient {
@GetMapping("/foo/bar")
Foo<Bar> get(@RequestParam("bar") Foo bar);
}

但还是不对,我们打开日志:

1
2023-11-25T11:25:16.502+08:00 TRACE [user-service,,,] 2558612 --- [           main] s.n.www.protocol.http.HttpURLConnection  : ProxySelector Request for http://127.0.0.1:8000/front/squarePost/foo/bar?bar=Foo%28bar%3Dbar%29

可以看到我们的参数变成了:

1
http://127.0.0.1:8000/foo/bar?bar=Foo%28bar%3Dbar%29

我们用浏览器转一下码

1
decodeURIComponent("http://127.0.0.1:8000/foo/bar?bar=Foo%28bar%3Dbar%29")

得到:

原来是直接给我toString了,并且把整个对象当作参数传递过去了,我们此处使用@SpringQueryMap注解解决

1
2
3
4
5
@FeignClient("another-service")
public interface MyFeignClient {
@GetMapping("/foo/bar")
Foo<Bar> get(@SpringQueryMap Foo bar);
}

这下就对了:

1
2023-11-25T11:25:16.502+08:00 TRACE [user-service,,,] 2558612 --- [           main] s.n.www.protocol.http.HttpURLConnection  : ProxySelector Request for http://127.0.0.1:8000/front/squarePost/foo/bar?bar=bar