Servlet = Server + Applet
Servlet就是一套规范,根据这套规范写的代码就可以直接在Java的服务器上运行
ServlerConfig接口 Servlet接口
GenericServlet类 -----------Servlet3.1中的Servlet结构
HttpServlet类
Servlet接口:
//容器启动时被调用一次
- public void init(ServletConfig config) throws ServletException;
//用于获取ServletConfig
- public ServletConfig getServletConfig();
//service方法用于处理一个请求
- public void service(ServletRequest req, ServletResponse res) throws ServletException, IOException;
//获取Servlet相关信息
- public String getServletInfo();
//容器销毁时被调用一次
- public void destroy();