我的控制器有以下调用
@ModelAttribute("commandObject")
public UsersCommand getCommand(HttpServletRequest req) throws Exception {
...
return command;
}
@RequestMapping(value = {"addusers.json"}, method = RequestMethod.GET)
public void handleGet() {
//empty method
}
@RequestMapping(value = {"addusers.json"}, method = RequestMethod.POST)
public void handlePost(@ModelAttribute("commandObject") UsersCommand command, HttpServletRequest req) throws Exception {
//do stuff
}
在获取过程中,我得到了我的 UsersCommand 对象的 json,但是在我发帖后,我得到了我不需要的命令对象的 json,因为我想做火而忘记发帖。
如何避免 json 对象在发布期间下降到浏览器?