IT培訓(xùn)網(wǎng)
IT在線學(xué)習(xí)
5、HttpServlet類
public abstract class HttpServlet extends GenericServlet
由實(shí)現(xiàn)Servlet接口的抽象類GenericServlet派生的抽象子類,用于創(chuàng)建支持HTTP協(xié)議的Servlet程序。
針對(duì)HTTP1.1協(xié)議中定義的7種請(qǐng)求方法GET、POST、HEAD、PUT、DELETE、TRACE、OPTIONS,HttpServlet分別提供了7個(gè)處理方法:
doGet(),doPost(),doHead(),doPut(),doDelete(),doTrace(),doOptions() 響應(yīng)客戶請(qǐng)求。
(1)服務(wù)方法
protected void service(HttpServletRequest request,
HttpServletResponse response) throws ServletException,
IOException
public void service(ServletRequest request,
ServletResponse response) throws ServletException,
IOException
當(dāng)Servlet容器接收到客戶請(qǐng)求時(shí),調(diào)用service方法響應(yīng)客戶請(qǐng)求,service方法在Servlet實(shí)例化、初始化之后被調(diào)用,并且可以被多次調(diào)用。
若在Servlet中重寫了service方法,則由該方法處理客戶請(qǐng)求;若沒有重寫service方法,Servlet容器會(huì)根據(jù)HTTP協(xié)議的請(qǐng)求方式,調(diào)用不同的請(qǐng)求處理方法響應(yīng)客戶請(qǐng)求。
protected void doGet(HttpServletRequest request,
HttpServletResponse response) throws ServletException,
IOException
處理HTTP的GET請(qǐng)求。
protected void doPost(HttpServletRequest request,
HttpServletResponse response) throws ServletException,
IOException
處理HTTP的POST請(qǐng)求。
protected void doDelete(HttpServletRequest request,
HttpServletResponse response) throws ServletException,
IOException
處理HTTP的DELETE請(qǐng)求。
protected void doHead(HttpServletRequest request,
HttpServletResponse response) throws ServletException,
IOException
處理HTTP的HEAD請(qǐng)求。
protected void doOptions(HttpServletRequest request,
HttpServletResponse response) throws ServletException,
IOException
處理HTTP的OPTIONS請(qǐng)求。
protected void doPut(HttpServletRequest request,
HttpServletResponse response) throws ServletException,
IOException
處理HTTP的PUT請(qǐng)求。
protected void doTrace(HttpServletRequest request,
HttpServletResponse response) throws ServletException,
IOException
處理HTTP的TRACE請(qǐng)求。
(2)獲取Servlet相關(guān)信息方法
protected long getLastModified(HttpServletRequest request)
獲取HttpServletRequest對(duì)象的最后修改時(shí)間,返回的數(shù)值是自1970-1-1日以來的毫秒數(shù)。
默認(rèn)返回一個(gè)負(fù)數(shù),表示不知道HttpServletRequest對(duì)象的最后修改時(shí)間。
>>本文地址:http://www.yiyunku.cn/zhuanye/2021/65871.html
聲明:本站稿件版權(quán)均屬中公教育優(yōu)就業(yè)所有,未經(jīng)許可不得擅自轉(zhuǎn)載。
1 您的年齡
2 您的學(xué)歷
3 您更想做哪個(gè)方向的工作?