SpringBoot使用过滤器Filter
1.通过注解的方式实现
创建一个Filter类,并在类上使用@WebFilter注解,并实现doFilte()r方法
然后在SpringBoot启动类上面再加入@ServletComponentScan("basePackages = "com.abc.springboot.filter")注解
2.通过创建SpringBoot的配置类来实现
创建一个Filter的类,并实现Filter接口,重写接口中的doFilter()方法
编写一个 Spring Boot 的配置类,在该类中注册 Filter就可以了