摘要:的生命周期是由它部署的容器控制的。管理生命周期事件你可以通過定義生命周期事件發生方法的監聽器來監聽的生命周期并做出反應。生命周期事件列表使用注解可以獲取特定程序的各種事件。處理異常執行時,可能發生任意數量的異常。
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異常
Servlet執行時,可能發生任意數量的異常。當一個異常發生時,web容器自動生成包含下述信息的默認頁面:
A Servlet Exception Has Occurred
但你也可以定義特定異常的特定頁面讓容器返回。
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/73864.html
摘要:實際開發中最常見的和方法配置文件配置文件如下引用百度定義 Servlet全解析筆記 Servlet(Server Applet)是Java Servlet的簡稱,稱為小服務程序或服務連接器,用Java編寫的服務器端程序,具有獨立于平臺和協議的特性,主要功能在于交互式地瀏覽和生成數據,生成動態Web內容,Servlet的常見類型有,繼承自Httpservlet的普通Servlet類、Se...
摘要:協議版本請求頭客戶端向服務器端表示,我能支持什么類型的數據。在地址欄上輸入項目名稱向報告,我這個應用里面有這個,名字叫做具體的路徑是注冊的映射。的配置,通過這個對象,可以獲取在配置的時候一些信息先說,在寫怎么用,最后說有什么用。 1.Http協議 什么是協議 雙方在交互、通訊的時候, 遵守的一種規范、規則。 http協議 針對網絡上的客戶端 與 服務器端在執行http請求的時候...
摘要:使用技術開發應用程序深入了解的機制對應用的開發將有重要的推動作用而想深入了解的機制就不得不了解包包中包含了個接口個類和個異常類它們分別是接口和類和異常類和的生命周期在的接口中定義了一個的生命周期方法分別是和演示了生命周期方法的簡單在中如何獲 使用 Java 技術開發 WEB 應用程序 , 深入了解 Servlet 的機制對應用的開發將有重要的推動作用 . 而想深入了解 Servlet ...
閱讀 1221·2023-04-25 20:56
閱讀 2268·2023-04-25 14:42
閱讀 1026·2023-04-25 14:06
閱讀 2868·2021-10-14 09:42
閱讀 2142·2021-09-22 16:03
閱讀 989·2021-09-13 10:30
閱讀 1347·2019-08-29 15:41
閱讀 1800·2019-08-29 12:55