使用springmvc时报错JSPs only permit GET POST or HEAD

Posted 寒潭渡鹤影

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用springmvc时报错JSPs only permit GET POST or HEAD相关的知识,希望对你有一定的参考价值。

两个地方需要注意:
第一处在web.xml文件中不要忘记配置

<filter>
         <filter-name>HiddenHttpMethodFilter</filter-name>
         <filter-class>org.springframework.web.filter.HiddenHttpMethodFilter</filter-class>
     </filter>
     
     <filter-mapping>
         <filter-name>HiddenHttpMethodFilter</filter-name>
         <url-pattern>/*</url-pattern>
     </filter-mapping>

第二处是在方法开头加上注解@ResponseBody,代码如下所示

@RequestMapping(value="/testRest/{id}",method=RequestMethod.PUT)
    @ResponseBody
    public String testRestPut(@PathVariable Integer id){
        System.out.println("testRest Put:" + id);
        return SUCCESS;
    }
    
    @RequestMapping(value="/testRest/{id}",method=RequestMethod.DELETE)
    @ResponseBody
    public String testRestDelete(@PathVariable Integer id){
        System.out.println("testRest Delete:" + id);
        return SUCCESS;
    }

然后就成功了。

 


以上是关于使用springmvc时报错JSPs only permit GET POST or HEAD的主要内容,如果未能解决你的问题,请参考以下文章

adb install 安装apk时报错Failure [INSTALL_FAILED_TEST_ONLY]解决方法

在运行springmvc项目时报了一个错 请求解答

(已解决)多卡训练时报错RuntimeError: grad can be implicitly created only for scalar outputs

Hadoop上传文件时报错: could only be replicated to 0 nodes instead of minReplication (=1)....

springMVC 注解 启动时报错

mysql 使用 GROUP BY 时报错 ERROR 1055 (42000)