春季:如何从POST正文中获取参数?
2022-09-02 02:25:40
使用弹簧的Web服务,其中我必须从我的发布请求的正文中获取参数?身体的内容是这样的:-
source=”mysource”
&json=
{
"items": [
{
"username": "test1",
"allowed": true
},
{
"username": "test2",
"allowed": false
}
]
}
而网络服务方法看起来像:
@RequestMapping(value = "/saveData", headers="Content-Type=application/json", method = RequestMethod.POST)
@ResponseBody
public ResponseEntity<Boolean> saveData(@RequestBody String a) throws MyException {
return new ResponseEntity<Boolean>(uiRequestProcessor.saveData(a),HttpStatus.OK);
}
请让我知道我如何从身体中获取参数?我可以把整个身体放在我的绳子里,但我不认为这是一个有效的方法。请让我知道我如何进一步。