JSPs only permit GET POST or HEAD问题

问题描述:

在SpringMVC框架中,使用rest风格用delete和put提交表单的时候,页面出现如下错误

JSPs only permit GET POST or HEAD问题_第1张图片

在看下Controller类中的代码

@RequestMapping(value="/testRest/{id}", method=RequestMethod.DELETE)
public String testRestDelete(@PathVariable(value="id") Integer id){
    System.out.println("test delete:" + id);
    return SUCCESS; // 跳转到success.jsp页面
}

如何解决:

  1. 在方法上添加@ResponseBody注解,将方法的返回值,以特定的格式写入到response的body区域,再将数据响应给客户端。(感觉没啥用,因为我这里要的跳转到success页面去,不是要返回字符串)
  2. 在跳转后的success.jsp页面中,添加一个页面属性isErrorPage="true",错误处理页面会被当作出错页面处理。
  3. 在方法中return的字符串中使用重定向。
@RequestMapping(value="/testRest/{id}", method=RequestMethod.DELETE)
// @ResponseBody
public String testRestDelete(@PathVariable(value="id") Integer id){
    System.out.println("test delete:" + id);
    return "redirect:/other.jsp"; // 跳转到other.jsp页面,因为success.jsp放在WEB-INF目录下,所以没法重定向过去= =
}

 

你可能感兴趣的:(SSM框架)