From Overview of JDBC and its use with Microsoft Access UC Web Applications Certificate -- June 26 97. byNancy McCracken(Sangetta Aggarwal, Udayan Parvate, Tom Pulikal)
Servlets :
must import the java.servlet package
must extend the GenericServlet class or HttpServlet class if implementing http features
must override the service method in the class
eg Hello World Servlet:
import java.io.*;
import java.servlet.*;
public class HelloWorldServlet extends GenericServlet {