【发布时间】:2019-01-04 12:37:06
【问题描述】:
我的方法抛出异常:
@GetMapping(value = "/orders/{email}")
private List<Order> ordersByEmail(@PathVariable String email) {
List<Order> list = restTemplate.exchange(
"http://localhost:8082/api/v1/orders/email/{email}",
HttpMethod.GET,
new HttpEntity<>(email),
new ParameterizedTypeReference<List<Order>>() {
}).getBody();
}
请求url方法:
@ApiOperation("Find orders by email")
@GetMapping(value = "/email/{email}")
public List<Order> findOrdersByEmail(@PathVariable String email) {
return orderService.findByEmail(email);
}
卷曲:
curl -X GET "http://localhost:8084/api/v1/processor/orders/{email}?email=string" -H "accept: */*"
请求网址:
http://localhost:8084/api/v1/processor/orders/{email}?email=string
大摇大摆的回应:
Error:
Response body
Download
{
"timestamp": "2019-01-04T00:27:34.059+0000",
"status": 500,
"error": "Internal Server Error",
"message": "Not enough variable values available to expand 'email'",
"path": "/api/v1/processor/orders/%7Bemail%7D"
}
Response headers
connection: close
content-type: application/json;charset=UTF-8
date: Fri, 04 Jan 2019 00:27:34 GMT
transfer-encoding: chunked
【问题讨论】:
-
sry,而不是@RequestParam,我使用@PathVariable 并在ordersByEmail 方法中更改了我的请求url,但问题是一样的
标签: java rest swagger resttemplate