Filter过滤器就是用来过滤Servlet的请求和响应的,下面一个图来进行展示
下面我们来写第一个Filter,其实Filter跟Servlet很相似,Filter也是个接口,在编写Filter的时候,也是通过实现Filter接口,重写里面的doFilter方法,并且通过配置文件或者注解,来进行拦截哪写文件时可以通过的,这里需要注意一下,在重写Filter方法的时候,需要放行的操作,请求和响应才能通过,好来例子。
首先我们写一个类,实现Filter接口,这里首先用xml配置文件实现,Filter是javax.servlet包下的
package com.zhiying.filter;
import javax.servlet.*;
import java.io.IOException;
public class FilterDemo1 implements Filter {
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
System.out.println("Hello Filter");
//放行
chain.doFilter(request,response);
}
}
然后我们把index.jsp文件进行简单修改,用于测试
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>$Title$</title>
</head>
<body>
index.jsp...
</body>
</html>
最后就是web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
version="4.0">
<filter>
<filter-name>demo1</filter-name>
<filter-class>com.zhiying.filter.FilterDemo1</filter-class>
</filter>
<filter-mapping>
<filter-name>demo1</filter-name>
<!-- 这里的意思是执行所有的方法都会通过该过滤器,也就是拦截路径-->
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
从下图可以看出,但我们访问index.jsp的时候,输出了Hello Filter,也就是执行了Filter过滤器
如果我们用注解的话,会更简单,只需一个@WebFilter()
package com.zhiying.filter;
import javax.servlet.*;
import javax.servlet.annotation.WebFilter;
import java.io.IOException;
@WebFilter("/*") //这里的意思是执行所有的方法都会通过该过滤器,也就是拦截路径
public class FilterDemo1 implements Filter {
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
System.out.println("Hello Filter");
//放行
chain.doFilter(request,response);
}
}
web.xml文件就不用配置了,一个注解搞定,也能得到上面的结果。
贺志营 发布了370 篇原创文章 · 获赞 242 · 访问量 5万+ 私信 关注