2

这是我的弹簧控制器代码..

@RequestMapping(value= "/save_item",
method = RequestMethod.POST,produces="application/json")

public @ResponseBody ModelMap saveItem(ModelMap model,
@RequestParam("id") String itemId,
@RequestParam("name") String itemName) {

model.addAttribute("itemId",itemId);
return model;
}

我如何使用 spring rest tempalte 创建一个休息客户端?

我需要从我的休息客户端(id,name)发送两个参数。任何人请帮助我。

谢谢。

4

1 回答 1

0

您可以创建一个 RestTemplate 对象并按此执行

ResponseEntity<List<City>> result = restTemplate.exchange(
                new StringBuilder(URL).append(city).toString(),
                HttpMethod.GET, null, responseType);

在这个项目中,您可以找到一个带有 spring-boot 和 spstring-web 的 maven 项目,该项目使用这个 restTemplate 片段和 jackson 作为 json 响应

https://github.com/voliveirajr/dev-test

于 2015-06-28T01:05:34.380 回答