SpringMVC中发送PUT和DELETE请求详解编程语言

使用HiddenHttpMethodFilter

在web.xml中配置如下过滤器

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

jsp的form表单直接使用method=”POST”的方式提交,提交一个隐藏的input  <input type=”hidden” name=”_method” value=”put” />

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/11232.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论