首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

介绍一上javax.servlet.Servlet接口及其主要方法

2012-10-07 
介绍一下javax.servlet.Servlet接口及其主要方法Servlet接口的主要作用是提供Servlet生命周期的init()、ser

介绍一下javax.servlet.Servlet接口及其主要方法
Servlet接口的主要作用是提供Servlet生命周期的init()、service()和destroy()方法。
servlet接口中的主要方法有:
void init(ServletConfit config)throws ServletException???? 在servlet被载入后和实施服务前由servlet引擎进行一次性调用。如果init()产生溢出UnavailableException,则 servle退出服务。
ServletConfig getServletConfig()???? 返回传递到servlet的init()方法的ServletConfig对象
void service(ServletRequest request, ServletResponse response)throws ServletException,IOException???? 处理request对象中描述的请求,使用response对象返回请求结果
String getServletInfo()???????? 返回描述servlet的一个字符串
void destory()???????? 当servlet将要卸载时由servlet引擎调用,销毁Servlet实例。

热点排行