我正在使用带有 RESTFullWebService 的 Spring MVC。
我的客户端程序中的代码片段
RestTemplate restTemplate = new RestTemplate();
String startProcessURL = "http://"+hostAddress+":"+portNumber+"/jBPMSpring/process/startProcess/"+processId
上面的代码工作正常,当我使用 RequestMapping.GET 方法时。
从我的客户端程序中,我需要在请求映射 (POST) 中传递 HashMap。
有什么变化,我需要做的是传递HashMap。