springtoot过滤器注解方法

Posted _Lawrence

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springtoot过滤器注解方法相关的知识,希望对你有一定的参考价值。

 

 启动类加入@ServletComponentScan注解

package com.llf.utils;

import javax.servlet.*;
import javax.servlet.annotation.WebFilter;
import java.io.IOException;

@WebFilter(filterName = "mfilter",urlPatterns = "/*")
public class MyFilter implements Filter {

    @Override
    public void init(FilterConfig filterConfig) throws ServletException {
        System.out.print("初始化。。。。。。。。。。。。。。。。。。。。。。。。。");
    }

    @Override
    public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filterChain) throws IOException, ServletException {
        System.out.print("自定义过滤器。。。。。。。。。。。。。。。。。。。");
        filterChain.doFilter(servletRequest,servletResponse);
    }

    @Override
    public void destroy() {
        System.out.print("销毁。。。。。。。。。。。。。。。。。。。。。。。。。");
    }
}

 


以上是关于springtoot过滤器注解方法的主要内容,如果未能解决你的问题,请参考以下文章

过滤器注解

过滤器注解

注解例题

过滤作为 ViewPager 片段一部分的 ListView

使用无注解属性的过滤

Servlet3.0学习总结——使用注解标注过滤器(Filter)