溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Servlet生命周期是什么

發(fā)布時間:2020-10-29 10:15:29 來源:億速云 閱讀:146 作者:小新 欄目:編程語言

小編給大家分享一下Servlet生命周期是什么,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

Servlet的生命周期是由它部署的容器控制的。當(dāng)一個請求映射到一個Servlet,Servlet容器執(zhí)行下面的步驟。  
1  如果不存在這個Servlet的實例,容器執(zhí)行:
 a. 加載Servlet類
 b. 創(chuàng)建Servlet類實例
 c. 通過調(diào)用init方法初始化Servlet(initialization is covered in Creating and Initializing a Servlet)
2  容器調(diào)用Servlet的service方法,傳入requset和response參數(shù)。Service方法會在 Writing Service Methods章節(jié)探討。  
如果它需要移除這個Servlet,則容器通過調(diào)用Servlet的destroy方法來完成。更多信息需要查看Finalizing a Servlet章節(jié)。

管理Servlet生命周期事件

你可以通過定義生命周期事件發(fā)生方法的監(jiān)聽器來監(jiān)聽Servlet的生命周期并做出反應(yīng)。使用這些監(jiān)聽對象,你必須定義并且具體描述這些監(jiān)聽類。

定義監(jiān)聽類

你定義的監(jiān)聽類是必須是監(jiān)聽接口的一個實現(xiàn)。下面的列表定義了可以監(jiān)聽的事件和對應(yīng)的必須實現(xiàn)的規(guī)范的接口。當(dāng)監(jiān)聽方法被調(diào)用,它將傳入一個適合該事件的容器的信息的事件。例如,一個HttpSessionListener接口的方法會被傳入一個HttpSessionEvent,HttpSessionEvent包含了一個HttpSession。  
Servlet 生命周期事件列表

Web context

event:Initialization and destruction  
Listener Interface and Event Class:javax.servlet.ServletContextListener and ServletContextEvent

Web context

event:Initialization and destruction  
Listener Interface and Event Class:javax.servlet.ServletContextListener and ServletContextEvent

Web context

event:Initialization and destruction  
Listener Interface and Event Class:javax.servlet.ServletContextListener and ServletContextEvent

Web context

event:Initialization and destruction  
Listener Interface and Event Class:javax.servlet.ServletContextListener and ServletContextEvent

Web context

event:Initialization and destruction  
Listener Interface and Event Class:javax.servlet.ServletContextListener and ServletContextEvent

Web context

event:Initialization and destruction  
Listener Interface and Event Class:javax.servlet.ServletContextListener and ServletContextEvent

Web context

event:Initialization and destruction  
Listener Interface and Event Class:javax.servlet.ServletContextListener and ServletContextEvent

Web context

event:Initialization and destruction  
Listener Interface and Event Class:javax.servlet.ServletContextListener and ServletContextEvent

Web context

event:Initialization and destruction  
Listener Interface and Event Class:javax.servlet.ServletContextListener and ServletContextEvent

Web context

event:Initialization and destruction  
Listener Interface and Event Class:javax.servlet.ServletContextListener and ServletContextEvent

使用@WebListener注解可以獲取特定web程序的各種事件。使用@WebListener注解的類必須實現(xiàn)下列的接口之一。

javax.servlet.ServletContextListener
javax.servlet.ServletContextAttributeListener
javax.servlet.ServletRequestListener
javax.servlet.ServletRequestAttributeListener
javax.servlet..http.HttpSessionListener
javax.servlet..http.HttpSessionAttributeListener

處理Servlet異常

Servlet執(zhí)行時,可能發(fā)生任意數(shù)量的異常。當(dāng)一個異常發(fā)生時,web容器自動生成包含下述信息的默認(rèn)頁面:

A Servlet Exception Has Occurred

但你也可以定義特定異常的特定頁面讓容器返回。

以上是Servlet生命周期是什么的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI