Filter使用:
创建自定义Filter并实现Filter接口
下面总结一下使用正确的,合适的注解配置filter的方法:
1、 指定路径
在class 上添加注解@WebFilter(urlPatterns={“/app/online”})
如果同时也加了Component注解,则Filter会运行两次,Component的作用就是讲Filter交个容器
然后在启动类(**Application.java )上添加注解@ServletComponentScan
即可。
代码如下:
2、 过滤所有路径
在class上添加@Component或@Configuration 即可
如果添加了@Component或@Configuration,又添加了@WebFilter(),
那么会初始化两次Filter,并且会过滤所有路径+自己指定的路径 ,便会出现对没有指定的URL也会进行过滤
//过滤所有路径
@Component
public class WebFilter implements Filter(){
//override三个方法
。。。
。。。
@Override
public void init (FilterConfig filterConfig) throws ServletException{
System.out.println(“初始化filter”);
}
}