我想在春天做一个PUT电话。
这是我的控制器代码:
@RequestMapping(value = "/magic", method = RequestMethod.PUT)
TodoDTO magic(@RequestBody String id){
return service.magic(id);
}
因为我想在通话中传递一个id字符串。
问题是,我收到了这个
{
"timestamp": 1486644310464,
"status": 500,
"error": "Internal Server Error",
"exception": "java.lang.NullPointerException",
"message": "{\n\t\"id\":\"589c5e322abb5f28631ef2cc\"\n}",
"path": "/api/todo/magic"
}
如果我改变这样的代码:
@RequestMapping(value = "/magic", method = RequestMethod.PUT)
TodoDTO magic(@RequestParam(value = "id") String id){
return service.magic(id);
}
我收到了
{
"timestamp": 1486644539977,
"status": 400,
"error": "Bad Request",
"exception": "org.springframework.web.bind.MissingServletRequestParameterException",
"message": "Required String parameter 'id' is not present",
"path": "/api/todo/magic"
}
我拨打同一个电话,链接http://localhost:8080/api/todo/magic上的PUT 与身体
{
"id":"589c5e322abb5f28631ef2cc"
}
这是我的数据库中一个对象的id。
我的问题是,我如何实现目标?如果我通过链接传递参数,例如api / todo / magic / 589c5e322abb5f28631ef2cc,使用@PathVariable,它可以正常工作
答案 0 :(得分:5)
创建您自己的自定义类,如下所示
Class Request
{
private String id;
//getter and setter
}
将方法改为
@RequestMapping(value = "/magic", method = RequestMethod.PUT)
TodoDTO magic(@RequestBody Request request){
return service.magic(request.getId());
}
您也可以在url中使用id并在方法签名中使用@Pathvariable
@RequestMapping(value = "/magic/{id}", method = RequestMethod.PUT)
TodoDTO magic(@PathVariable String id){
return service.magic(request.getId());
}
答案 1 :(得分:2)
当您使用@RequestBody String id
时,它只需要一个字符串:
"589c5e322abb5f28631ef2cc"
如果您想发送一个id
字段的对象,如
{
"id":"589c5e322abb5f28631ef2cc"
}
您应该使用id
字段创建一个类并修改方法的签名,以获取此类而不是String
。
答案 2 :(得分:0)
虽然按照其他答案中的建议创建一个包装类会起作用,但我认为可以避免这种开销并只使用Map。
@RequestMapping(value = "/magic", method = RequestMethod.PUT)
TodoDTO magic(@RequestBody Map<String, String> data){
return service.magic(data.get("id");
}