1 | This servlet returns a page to the web browser: |
2 | import java.io.*; |
3 | import javax.servlet.*; |
4 | public SampleServlet implements Servlet |
5 | { private ServletConfig config; |
6 | public void init (ServletConfig config) throws ServletException |
7 | { this.config = config; } |
8 | public void destroy ( ) { } // do nothing |
9 | public ServletConfig getServletConfig ( ) |
10 | { return config; } |
11 | public String getServletInfo() |
12 | { return "A simple servlet"; } |