-1
春を使ってResttemplateのポストコールの基本例を教えてください。 EX用基本的な残りのテンプレートの例
:
@Component
@RequestMapping("/request")
public class MyController {
@RequestMapping(value = "/{name}", method = RequestMethod.GET)
@ResponseBody
public String myName(@PathVariable String name) {
return name;
}
}
web.xmlの下に示すように
resttemplate.exchange(..,..,..,..,..);