0

我正在使用带有 RESTFullWebService 的 Spring MVC。

我的客户端程序中的代码片段

RestTemplate restTemplate = new RestTemplate();

String startProcessURL = "http://"+hostAddress+":"+portNumber+"/jBPMSpring/process/startProcess/"+processId

上面的代码工作正常,当我使用 RequestMapping.GET 方法时。

从我的客户端程序中,我需要在请求映射 (POST) 中传递 HashMap。

有什么变化,我需要做的是传递HashMap。

4

1 回答 1

0

有两个选项, postForLocation 或postForObject

初始化后,您可以将哈希图包装在一个类中:

String result = rest.postForObject("http://whatever.com/whenever/", yourClass, String.class,);
于 2013-04-11T09:12:25.463 回答