gpt4 book ai didi

java - Spring:如何从 POST 正文中获取参数?

转载 作者:IT老高 更新时间:2023-10-28 13:51:47 26 4
gpt4 key购买 nike

使用 spring 的 Web 服务,我必须从我的 post 请求的正文中获取参数?正文的内容是这样的:-

source=”mysource”

&json=
{
"items": [
{
"username": "test1",
"allowed": true
},
{
"username": "test2",
"allowed": false
}
]
}

web-service 方法如下:-

@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);

}

请告诉我如何从正文中获取参数?我可以在我的字符串中得到整个 body ,但我认为这不是一个有效的方法。请让我知道如何进行下一步。

最佳答案

您可以将整个帖子正文放入 POJO。以下是类似的东西

@RequestMapping(
value = { "/api/pojo/edit" },
method = RequestMethod.POST,
produces = "application/json",
consumes = ["application/json"])
@ResponseBody
public Boolean editWinner( @RequestBody Pojo pojo) {

Pojo 中的每个字段(包括 getter/setter)应该与 Controller 接收到的 Json 请求对象匹配。

关于java - Spring:如何从 POST 正文中获取参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22163397/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com