我正在尝试弹簧框架。 我有RestController和函数:
@RequestMapping(value="/changePass", method=RequestMethod.POST)
public Message changePassword(@RequestBody String id, @RequestBody String oldPass,
@RequestBody String newPass){
int index = Integer.parseInt(id);
System.out.println(id+" "+oldPass+" "+newPass);
return userService.changePassword(index, oldPass, newPass);
}
并编码angularJS
$scope.changePass = function(){//changePass
$scope.data = {
id: $scope.userId,
oldPass:$scope.currentPassword,
newPass:$scope.newPassword
}
$http.post("http://localhost:8080/user/changePass/", $scope.data).
success(function(data, status, headers, config){
if(date.state){
$scope.msg="Change password seccussful!";
} else {
$scope.msg=date.msg;
}
})
.error(function(data, status, headers, config){
$scope.msg="TOO FAIL";
});
}
当我跑的时候。
错误讯息:
Failed to read HTTP message: org.springframework.http.converter.HttpMessageNotReadableException: Required request body is missing: public com.csc.mfs.messages.Message com.csc.mfs.controller.UserController.changePassword(java.lang.String,java.lang.String,java.lang.String)
帮我修理一下,请...
答案 0 :(得分:16)
问题出在此代码中。
@RequestBody String id, @RequestBody String oldPass,
@RequestBody String newPass
您不能在同一方法中使用多个
@RequestBody
,因为它可以绑定到a 仅限单个对象(正文只能使用一次)。
方法1:
对该问题进行补救,创建一个捕获所有相关数据的对象,然后创建参数中的对象。
一种方法是将它们全部嵌入到单个JSON中,如下所示
{id:"123", oldPass:"abc", newPass:"xyz"}
将控制器作为单个参数,如下所示
public Message changePassword(@RequestBody String jsonStr){
JSONObject jObject = new JSONObject(jsonStr);
.......
}
方法2:
为ArgumentResolver
答案 1 :(得分:-2)
您不能拥有GET方法的请求正文。如果要将用户名和密码作为请求正文的一部分传递,请将RequestMethod类型更改为POST / PUT。
如果您只想使用GET,那么您必须将用户名和密码作为路径变量或请求/查询参数传递 - 这不是最佳做法。
我建议更改RequestMethod并传递username&密码作为请求正文。