IT培訓(xùn)網(wǎng)
IT在線學(xué)習(xí)
1、創(chuàng)建方式二
通過(guò)繼承javax.servlet.GenericServlet抽象類,創(chuàng)建與訪問(wèn)協(xié)議無(wú)關(guān)的Servlet。
繼承GenericServlet抽象類
在Servlet程序中,只需要重寫為客戶請(qǐng)求提供服務(wù)的service方法,在GenericServlet抽象類中,這是一個(gè)抽象方法。
代碼示例如下:
@WebServlet(description = "通過(guò)GenericServlet抽象類派生的Servlet程序", urlPatterns = { "/shouhuola/Servlet02" })
public class Servlet02 extends GenericServlet {
@Override
public void service(ServletRequest arg0, ServletResponse arg1) throws ServletException, IOException {
// TODO Auto-generated method stub
arg1.setContentType("text/html; charset=utf-8");
arg1.getWriter().println("這是通過(guò)GenericServlet抽象類派生的Servlet程序");
}
}
2、創(chuàng)建方式三
通過(guò)繼承javax.servlet.http.HttpServlet抽象類,創(chuàng)建支持HTTP訪問(wèn)協(xié)議的Servlet。
繼承HttpServlet抽象類
在Servlet程序中,可以根據(jù)客戶的請(qǐng)求方式(例如:GET、POST、HEAD、PUT、DELETE、TRACE、OPTIONS),重寫為客戶請(qǐng)求提供服務(wù)的doXxx方法;也可以重寫其父類的service方法。
若重寫了其父類的service方法,則由service方法為客戶請(qǐng)求提供服務(wù)。
若在service方法中調(diào)用了父類的service方法,例如:
super.service(req, resp);
那么,service方法會(huì)根據(jù)HTTP協(xié)議的請(qǐng)求方式,調(diào)用對(duì)應(yīng)請(qǐng)求方式的處理方法doXxx()。
代碼示例如下:
@WebServlet(description = "通過(guò)HttpServlet抽象類派生的Servlet程序", urlPatterns = { "/shouhuola/Servlet03" })
public class Servlet03 extends HttpServlet {
private static final long serialVersionUID = 1L;
public Servlet03() {
super();
// TODO Auto-generated constructor stub
}
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
// TODO Auto-generated method stub
response.setContentType("text/html; charset=utf-8");
response.getWriter().println("這是通過(guò)HttpServlet抽象類派生的Servlet程序");
}
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
// TODO Auto-generated method stub
doGet(request, response);
}
>>本文地址:http://www.yiyunku.cn/zhuanye/2021/67166.html
聲明:本站稿件版權(quán)均屬中公教育優(yōu)就業(yè)所有,未經(jīng)許可不得擅自轉(zhuǎn)載。
1 您的年齡
2 您的學(xué)歷
3 您更想做哪個(gè)方向的工作?
07月15日Java
咨詢/試聽(tīng)07月15日Python+人工智能
咨詢/試聽(tīng)07月15日Web前端
咨詢/試聽(tīng)07月15日UI設(shè)計(jì)
咨詢/試聽(tīng)07月15日大數(shù)據(jù)
咨詢/試聽(tīng)07月15日Java
咨詢/試聽(tīng)07月15日Python+人工智能
咨詢/試聽(tīng)07月15日Web前端
咨詢/試聽(tīng)07月15日UI設(shè)計(jì)
咨詢/試聽(tīng)07月15日大數(shù)據(jù)
咨詢/試聽(tīng)