Home > Java > javaTutorial > body text

Introduction to the implementation methods of filters and interceptors in springboot (code)

不言
Release: 2018-11-20 16:01:37
forward
3681 people have browsed it

This article brings you an introduction to the implementation methods (code) of filters and interceptors in springboot. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

Filters and interceptors are both manifestations of AOP programming ideas and can implement such things as permission checking, logging, etc. There are certain similarities between the two, but the difference is:

  • Filter is a servlet specification and can only be used in Web programs, while interceptor is a Spring specification and can be used in Web programs program, and can also be used in the Application program.

  • Filter is defined in servlet and depends on the servlet container. The interceptor is defined in Spring and depends on the Spring container.

  • The interceptor is a Spring component, managed by Spring, and configured in the Spring configuration file, so it can use any Spring resource. For example, Services, data sources, etc. can be injected into the interceptor through the IOC container, but Filter cannot.

  • Filter only works before and after the servlet, while the interceptor can go deep before and after the method, before and after the exception is thrown. Use more depth.

Implementing the filter Filter in Spring

Method 1: Use the FilterRegistrationBean provided by springboot to register a custom filter

public class MyFilter implements Filter {

    @Override
    public void init(FilterConfig filterConfig) throws ServletException {
        System.out.println("MyFilter init...");
    }

    @Override
    public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filterChain) throws IOException, ServletException {
        //站点图标/favicon.ico  filter会执行2次
        HttpServletRequest request=(HttpServletRequest) servletRequest;
        System.out.println(request.getRequestURI());
        System.out.println("MyFilter dofilter...");
        filterChain.doFilter(servletRequest,servletResponse);
    }

    @Override
    public void destroy() {

    }
}
Copy after login

Register Filter in springboot

@Configuration
public class FilterConfig {

    @Bean
    public FilterRegistrationBean registrationBean(){
        FilterRegistrationBean myfilter=new FilterRegistrationBean(new MyFilter());
        myfilter.addUrlPatterns("/*");

        return myfilter;
    }
Copy after login

When you run the demo here, you will find that do filter is executed twice. Debug found that this is because of browsing The site icon is managed when requested by the server and can be found through the uri. You can use regular expressions to control it appropriately according to your own needs.

Method 2: servlet annotation definition Filter

@Component
@WebFilter(filterName = "myFilter2",urlPatterns = "/*")
public class MyFilter2 implements Filter {
    @Override
    public void init(FilterConfig filterConfig) throws ServletException {
        System.out.println("myFilter2 init...");
    }

    @Override
    public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filterChain) throws IOException, ServletException {
        System.out.println("myFilter2 dofilter ...");
        filterChain.doFilter(servletRequest,servletResponse);
    }

    @Override
    public void destroy() {

    }
}
Copy after login

The filter declared using the servleta annotation has only one request during execution. This is different from using spring configuration filter.

Implementing interceptors in Spring

Interceptors mainly use custom classes to integrate HandlerInterceptor. The program will continue to execute when preHandle returns true, and the request will be interrupted if it returns false.

public class MyInterceptor implements HandlerInterceptor {

    @Override
    public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
        System.out.println("/preHandler");
        return true;
    }

    @Override
    public void postHandle(HttpServletRequest request, HttpServletResponse response, Object handler, @Nullable ModelAndView modelAndView) 
throws Exception {
        System.out.println("postHandler");
    }

    @Override
    public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object handler, @Nullable Exception ex) throws Exception {
        System.out.println("afterCompletion");
    }
}
Copy after login

Configure the interceptor in the program and declare the interception rules

@Configuration
public class InterceptorConfig implements WebMvcConfigurer {

    @Override
    public void addInterceptors(InterceptorRegistry registry) {
        registry.addInterceptor(new MyInterceptor()).addPathPatterns("/*");
    }
}
Copy after login

operation result

Introduction to the implementation methods of filters and interceptors in springboot (code)

The above is the detailed content of Introduction to the implementation methods of filters and interceptors in springboot (code). For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:cnblogs.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!