在使用Filter对一些自己指定的URL进行过滤拦截时,经常会出现如下错误:
1、 明明在@WebFilter(urlPatterns={"/app/online"})中过滤的是/app/online 路径,但是运行之后发现,这个WebFilter过滤器对所有的URL都进行了过滤。
2、 运行之后发现过滤器没有初始化,没有被加载
下面总结一下使用正确的,合适的注解配置filter的方法:
1、 指定路径
在class 上添加注解@WebFilter(urlPatterns={"/app/online"})
然后在启动类(**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"); }
}