站点图标 度崩网-几度崩溃

过滤器的生命周期是什么样的?有什么作用?

生命周期:

//servlet 容器启动时会创建 Filter 实例public void init(FilterConfig filterConfig) throws ServletException;//在每次访问目标资源时执行public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException;//服务器关闭时销毁Filter对象public void destroy();

作用: