码迷,mamicode.com
首页 > 其他好文 > 详细

过滤器的建立

时间:2017-11-05 23:35:28      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:des   ons   throw   res   throws   pack   except   cep   ini   

过滤器的基本结构:

package....;

import....;

public classFilter implements Filter{//这里是给出Filter的一个实现类Filter1

  public void destroy(){

    //添加代码

  }

public void doFilter(ServletRequest request,ServletResponse response,

  FilterChain filterChain)throws IOException,ServletException{

  //添加代码

}

public void init(FilterConfig filterConfig)throws ServletException{

  //添加代码

}

}

过滤器的建立

标签:des   ons   throw   res   throws   pack   except   cep   ini   

原文地址:http://www.cnblogs.com/lls1350767625/p/7789110.html

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