restTemplate 好像无法既传方法体,又传地址栏。只能传方法体的同时传restfull风格的变量,比如
//无法访问这样的接口 @PostMapping("/hello/") public R hello(@RequestBody StudentVo vo, @RequstParam("id") Interge id){ } //对于这样的接口可以访问 @PostMapping("/hello/{id}") public R hello(@RequestBody StudentVo vo, @PathVriable("id") Interge id){ }