Basic HTML version of Foils prepared May 19 99

Foil 10 Example Servlet (from MageLang)

From Overview of JDBC: Java Database Connectivity Java Servlets -- Spring Semester 1999. by Nancy McCracken


This servlet returns a page to the web browser:
import java.io.*;
import javax.servlet.*;
public SampleServlet implements Servlet
{ private ServletConfig config;
public void init (ServletConfig config) throws ServletException
{ this.config = config; }
public void destroy ( ) { } // do nothing
public ServletConfig getServletConfig ( )
{ return config; }
public String getServletInfo()
{ return "A simple servlet"; }



© Northeast Parallel Architectures Center, Syracuse University, npac@npac.syr.edu

If you have any comments about this server, send e-mail to webmaster@npac.syr.edu.

Page produced by wwwfoil on Mon Jul 5 1999