您好,登錄后才能下訂單哦!
小編給大家分享一下Servlet生命周期是什么,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
Servlet的生命周期是由它部署的容器控制的。當一個請求映射到一個Servlet,Servlet容器執行下面的步驟。
1 如果不存在這個Servlet的實例,容器執行:
a. 加載Servlet類
b. 創建Servlet類實例
c. 通過調用init方法初始化Servlet(initialization is covered in Creating and Initializing a Servlet)
2 容器調用Servlet的service方法,傳入requset和response參數。Service方法會在 Writing Service Methods章節探討。
如果它需要移除這個Servlet,則容器通過調用Servlet的destroy方法來完成。更多信息需要查看Finalizing a Servlet章節。
你可以通過定義生命周期事件發生方法的監聽器來監聽Servlet的生命周期并做出反應。使用這些監聽對象,你必須定義并且具體描述這些監聽類。
你定義的監聽類是必須是監聽接口的一個實現。下面的列表定義了可以監聽的事件和對應的必須實現的規范的接口。當監聽方法被調用,它將傳入一個適合該事件的容器的信息的事件。例如,一個HttpSessionListener接口的方法會被傳入一個HttpSessionEvent,HttpSessionEvent包含了一個HttpSession。
Servlet 生命周期事件列表
event:Initialization and destruction
Listener Interface and Event Class:javax.servlet.ServletContextListener and ServletContextEvent
event:Initialization and destruction
Listener Interface and Event Class:javax.servlet.ServletContextListener and ServletContextEvent
event:Initialization and destruction
Listener Interface and Event Class:javax.servlet.ServletContextListener and ServletContextEvent
event:Initialization and destruction
Listener Interface and Event Class:javax.servlet.ServletContextListener and ServletContextEvent
event:Initialization and destruction
Listener Interface and Event Class:javax.servlet.ServletContextListener and ServletContextEvent
event:Initialization and destruction
Listener Interface and Event Class:javax.servlet.ServletContextListener and ServletContextEvent
event:Initialization and destruction
Listener Interface and Event Class:javax.servlet.ServletContextListener and ServletContextEvent
event:Initialization and destruction
Listener Interface and Event Class:javax.servlet.ServletContextListener and ServletContextEvent
event:Initialization and destruction
Listener Interface and Event Class:javax.servlet.ServletContextListener and ServletContextEvent
event:Initialization and destruction
Listener Interface and Event Class:javax.servlet.ServletContextListener and ServletContextEvent
使用@WebListener注解可以獲取特定web程序的各種事件。使用@WebListener注解的類必須實現下列的接口之一。
javax.servlet.ServletContextListener javax.servlet.ServletContextAttributeListener javax.servlet.ServletRequestListener javax.servlet.ServletRequestAttributeListener javax.servlet..http.HttpSessionListener javax.servlet..http.HttpSessionAttributeListener
Servlet執行時,可能發生任意數量的異常。當一個異常發生時,web容器自動生成包含下述信息的默認頁面:
A Servlet Exception Has Occurred
但你也可以定義特定異常的特定頁面讓容器返回。
以上是Servlet生命周期是什么的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。