Skip to content

Instantly share code, notes, and snippets.

@extsalt
Created June 28, 2021 10:01
Show Gist options
  • Save extsalt/87007b0069f9c3286a4342d5aa007e0c to your computer and use it in GitHub Desktop.
Save extsalt/87007b0069f9c3286a4342d5aa007e0c to your computer and use it in GitHub Desktop.
Servlets Interface methods
public interface Servlet {
public void init(ServletConfig config) throws ServletException;
public ServletConfig getServletConfig();
public void service(ServletRequest req, ServletResponse res) throws ServletException, IOException;
public String getServletInfo();
public void destroy();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment