摘要: Spring5.1以后提供的一个过滤器。将PUT、PATCH、DELETE请求体解析为Servlet请求参数。如果不在web.xml中配置这个过滤器,只有POST请求体可以解析。 Filter that parses form data for HTTP PUT, PATCH, and DELETE 阅读全文
posted @ 2021-01-28 12:22 日进一卒 阅读(869) 评论(0) 推荐(0)
摘要: HiddenHttpMethodFilter过滤器的作用是将form表单提交的POST请求转化为指定的标准请求(GET,、POST、 HEAD、OPTIONS、PUT、DELETE、TRACE)。该过滤器的实现原理是:通过读取POST请求体中的"_method"属性值,将该属性值作为 HttpSer 阅读全文
posted @ 2021-01-28 11:35 日进一卒 阅读(1030) 评论(0) 推荐(0)
摘要: public class ContextLoaderListener extends ContextLoader implements ServletContextListener {//实现了ServletContextListener接口(Servlet上下文监听器),可以监听web服务器上下文 阅读全文
posted @ 2021-01-28 11:15 日进一卒 阅读(189) 评论(0) 推荐(0)