springboot实现过滤器和监听器 步骤 步骤 1、在@SpringbootApplication上添加注解@ServletComponentScan,作用是直接使用@WebServlet、@WebFilter、@WebListener注解就可以注册过滤器、监听器等,且无需另行注册 2、创建一个类实现Filter或者Listener等接口并添加@WebFilter(filterName="",urlPatterns="/*")或@WebListener等注解就可以实现