码迷,mamicode.com
首页 > 编程语言 > 详细

springboot + webFilter

时间:2020-05-11 23:34:07      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:filter过滤器   system   boot   ide   val   ring   void   request   res   

1. 在springboot中添加filter过滤器

可以注解的形式添加 ,但是注意对于 @WebFilter,属于servlet的产物,需要在springboot中引入

@Component                      成为组件

@ServletComponentScan   才可扫描到

@WebFilter可指定server,value 和 urlPatterns, 其中value优先级最低

注意filter要用java.servlet.Filter

@Component
@WebFilter(urlPatterns = { "/pc/*"}) public class ApplicationPCFilter implements Filter { @Override public void init(FilterConfig filterConfig) throws ServletException { System.out.println(""); } @Override public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filterChain) throws IOException, ServletException { filterChain.doFilter(servletRequest,servletResponse); } @Override public void destroy() { }

 

springboot + webFilter

标签:filter过滤器   system   boot   ide   val   ring   void   request   res   

原文地址:https://www.cnblogs.com/DennyZhao/p/12512485.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!