通过Rest模板测试@RequestParam

时间:2016-12-30 15:03:24

标签: spring spring-boot resttemplate

我有一个像这样的控制器:

@GetMapping("listThem")
@ResponseBody
public List<String> listThem(@RequestParam Piece piece)

我想通过Rest Template进行测试。我已经构建了piece对象并尝试了但是没有工作:

String response = restTemplate.getForObject("http://localhost:8080/listThem?piece={piece}", String.class, piece);

我不确定是否需要将对象构造为JSON。

如何通过Rest Template测试@RequestParam

0 个答案:

没有答案