帶你快速上手Servlet

一、Servlet與Tomcat的關系

(1)Tomcat是什麼?

Tomcat其實是Web服務器和Servlet容器的結合體

(2)什麼是Web服務器?

比如,我當前在杭州,你能否用自己的電腦訪問我桌面上的一張圖片?恐怕不行,我們太習慣通過URL訪問的一個網站、下載一部電影瞭。一個資源,如果沒有URL映射,那麼外界幾乎很難訪問,而Web服務器的作用說穿瞭就是:將某個主機上的資源映射為一個URL供外界訪問

二、什麼是Servlet

(1)什麼是Servlet容器?

Servlet是運行在Web服務器或應用服務器上的程序。

Servlet容器,顧名思義裡面存著Servlet對象,我們為什麼能夠通過Web服務器映射的URL訪問資源?肯定需要寫程序處理請求,主要3個過程:接受請求,處理請求,響應請求。

三、Servlet的類結構

通過繼承HttpServlet實現Servlet接口

一般在實際項目開發中,都是使用繼承HttpServlet類的方式去實現Servlet程序

(1)編寫一個類去繼承HttpServlet類

(2)根據業務需要重寫doGet或doPost方法

(3)到web.xml中的配置servlet程序的訪問地址

四、ServletConfig類

ServletConfig代表的是當前Servlet在web.xml中的配置信息

 String getServletName(); ---獲取當前Servlet在web.xml中配置的名字
 
    ServletContext getServletContext();---獲取當前Servlet指定名稱的初始化參數的值
 
    String getInitParameter(String var1);---獲取當前Servlet所有初始化參數的名字組成的枚舉
 
    Enumeration<String> getInitParameterNames();---獲取代表當前web應用的ServletContext對象

(1)作用:

1、可以獲取Servlet程序的別名Servlet-name的值

2、獲取初始化參數init-param

3、獲取ServletContext對象

 @Override
    public void init(ServletConfig servletConfig) throws ServletException {
//        1、可以獲取Servlet程序的別名Servlet-name的值
        System.out.println(servletConfig.getServletName());
//        2、獲取初始化參數init-param
        System.out.println(servletConfig.getInitParameter("username"));
//        3、獲取ServletContext對象
        System.out.println(servletConfig.getServletContext());
        System.out.println("2、執行初始化方法");
    }

五、ServletContext類

(1)什麼是ServletContext?

1、ServletContext是一個接口,它表示Servlet上下文對象。

2、一個Web工程,隻有一個ServletContext對象實例。

3、ServletContext是一個域對象。

4、ServletContext是在web工程部署啟動的時候創建,在web工程停止的時候銷毀。

什麼是域對象?

域對象,是可以像Map一樣存取數據的對象,叫域對象。

這裡的域指的是存取數據的操作范圍,整個web工程。

存數據 取數據 刪除數據

Map put() get() remove()

域對象 setAttribute() getAttribute() removeAttribute()

(2) ServletContext類的四個作用

1、獲取web.xml中配置的上下文參數context-param

public class ContextServlet extends HttpServlet {
    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
 
    }
 
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    //1、 獲取web.xml中配置上下文參數context-param
        ServletContext servletContext = getServletConfig().getServletContext();
        String username = servletContext.getInitParameter("username");
        System.out.println("context-param參數的username"+username);
 
    }
}

在web.xml中

<!--    context-param 是上下文參數(它是屬於整個web工程)-->
    <context-param>
        <param-name>username</param-name>
        <param-value>context</param-value>
    </context-param>

2、獲取當前的工程路徑,格式:/工程路徑

3、獲取工程部署後在服務器硬盤上的絕對路徑

(3)ServletContext像map一樣存取數據

public class ContextServlet1 extends HttpServlet {
    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
 
    }
 
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        //獲取ServletContext對象
        ServletContext context = getServletContext();
        System.out.println("保存之前:Context1 獲取key1的值是:"+context.getAttribute("key1"));
        context.setAttribute("key1","value1");
        System.out.println("Context1中獲取域數據key1的值是:"+context.getAttribute("key1"));
 
    }
}
保存之前:Context1 獲取key1的值是:null
Context1中獲取域數據key1的值是:value1
Context2中獲取域數據key1的值是:value1

六、Servlet的生命周期

public class HelloServlet implements Servlet {
    public HelloServlet() {
        System.out.println("1、執行構造器方法");
    }
 
    @Override
    public void init(ServletConfig servletConfig) throws ServletException {
        System.out.println("2、執行初始化方法");
    }
 
    @Override
    public ServletConfig getServletConfig() {
        return null;
    }
 
    //service方法是專門用來處理請求和響應的
    @Override
    public void service(ServletRequest servletRequest, ServletResponse servletResponse) throws ServletException, IOException {
        System.out.println("3、hello servlet 被訪問瞭");
    }
 
    @Override
    public String getServletInfo() {
        return null;
    }
 
    @Override
    public void destroy() {
        System.out.println(" 4、執行銷毀方法");
    }
}

執行的結果

1、執行構造器方法
2、執行初始化方法
3、hello servlet 被訪問瞭
3、hello servlet 被訪問瞭
3、hello servlet 被訪問瞭
3、hello servlet 被訪問瞭
3、hello servlet 被訪問瞭
3、hello servlet 被訪問瞭
3、hello servlet 被訪問瞭
3、hello servlet 被訪問瞭
3、hello servlet 被訪問瞭
G:\softWareInstall\apache-tomcat-9.0.45\bin\catalina.bat stop
Using CATALINA_BASE:   “C:\Users\Administrator\AppData\Local\JetBrains\IntelliJIdea2020.1\tomcat\Unnamed_Servlet”
Using CATALINA_HOME:   “G:\softWareInstall\apache-tomcat-9.0.45”
Using CATALINA_TMPDIR: “G:\softWareInstall\apache-tomcat-9.0.45\temp”
Using JRE_HOME:        “C:\Program Files\Java\jdk1.8.0_60”
Using CLASSPATH:       “G:\softWareInstall\apache-tomcat-9.0.45\bin\bootstrap.jar;G:\softWareInstall\apache-tomcat-9.0.45\bin\tomcat-juli.jar”
Using CATALINA_OPTS:   “”
03-May-2021 14:33:11.909 淇℃伅 [main] org.apache.catalina.core.StandardServer.await 閫氳繃鍏抽棴絝彛鎺ユ敹鍒版湁鏁堢殑鍏抽棴鍛戒護銆傛鍦ㄥ仠姝㈡湇鍔″櫒瀹炰緥銆�
03-May-2021 14:33:11.909 淇℃伅 [main] org.apache.coyote.AbstractProtocol.pause 鏆傚仠ProtocolHandler[“http-nio-8080”]
03-May-2021 14:33:12.289 淇℃伅 [main] org.apache.catalina.core.StandardService.stopInternal 姝e湪鍋滄鏈嶅姟[Catalina]
 4、執行銷毀方法

(1)執行Servlet構造器方法

(2) 執行init初始化方法

第一、二步,是在第一次訪問的時候創建Servlet程序會調用

(3)執行 Service方法

第三步、每次訪問都會調用

(4)執行destroy銷毀方法

第四步:在web工程停止的時候調用

七、Get、Post

get、post請求都會走Service方法,那麼怎麼區分get、post請求

    //service方法是專門用來處理請求和響應的
    @Override
    public void service(ServletRequest servletRequest, ServletResponse servletResponse) throws ServletException, IOException {
        System.out.println("3、hello servlet 被訪問瞭");
        HttpServletRequest httpServletRequest=(HttpServletRequest)servletRequest;
        String method = httpServletRequest.getMethod();
        if ("Get".equals(method)){
            
        }
        if ("POST".equals(method)){
            
        }
    }

到此這篇關於帶你快速上手Servlet的文章就介紹到這瞭,更多相關Servlet詳解內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: