2018-07-17

2018-07-17  本文已影响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();
}
上一篇下一篇

猜你喜欢

热点阅读