从您的 json 数据中,您的 DTO 可能是PropertyDTO{ long userloginid; String propertyname; long propertyid;}所以你的 API 看起来像@RestController@RequestMapping(value = "/property")public class PropertyController{ @RequestMapping(method = RequestMethod.GET) public PropertyDTO get(){ return null; } @RequestMapping(method = RequestMethod.PUT) public Boolean update(@RequestBody PropertyDTO dto){ return true; } @RequestMapping(method = RequestMethod.POST) public Boolean insert(@RequestBody PropertyDTO dto){ return true; }
1 回答
精慕HU
TA贡献1845条经验 获得超8个赞
免责声明:从未使用过 Spring HATEOAS。
但乍一看,您似乎混淆了两种 URL-Parameter 类型:
@PathVariable
对于路径变量,如.../teams/TEAM_ID
@RequestParam
对于查询参数,如.../teams?id=TEAM_ID
添加回答
举报
0/150
提交
取消