美文网首页
2018-07-17

2018-07-17

作者: 莫惹路人甲 | 来源:发表于2018-07-17 16:08 被阅读0次
package javax.servlet;

import java.io.IOException;

public interface Filter {

    public void init(FilterConfig filterConfig) throws ServletException;

    public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException;

    public void destroy();
}

相关文章

网友评论

      本文标题:2018-07-17

      本文链接:https://www.haomeiwen.com/subject/xjhgpftx.html