Posted in 面试题 onOctober 08, 2013
首先要实现(implements)Filter 接口,同时覆盖Filter 接口的三个方法:
init(FilterConfig config) //用于获得FilterConfig 对象;
doFilter(ServletRequest request, ServletResponse response,
FilterChain chain) //进行过滤处理一些业务;
destroy() //销毁Filter。
init(FilterConfig config) //用于获得FilterConfig 对象;
doFilter(ServletRequest request, ServletResponse response,
FilterChain chain) //进行过滤处理一些业务;
destroy() //销毁Filter。
过滤器的用法
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Tags in this post...
Reply on: @reply_date@
@reply_contents@