本篇內(nèi)容主要講解“ServletContext的詳細(xì)介紹”,感興趣的朋友不妨來(lái)看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來(lái)帶大家學(xué)習(xí)“ServletContext的詳細(xì)介紹”吧!
10年積累的網(wǎng)站設(shè)計(jì)制作、成都網(wǎng)站設(shè)計(jì)經(jīng)驗(yàn),可以快速應(yīng)對(duì)客戶對(duì)網(wǎng)站的新想法和需求。提供各種問(wèn)題對(duì)應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認(rèn)識(shí)你,你也不認(rèn)識(shí)我。但先制作網(wǎng)站后付款的網(wǎng)站建設(shè)流程,更有西疇免費(fèi)網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。
一、WEB容器在啟動(dòng)時(shí)候,它會(huì)為每個(gè)WEB應(yīng)用程序創(chuàng)建一個(gè)對(duì)應(yīng)的ServletContext對(duì)象,它代表當(dāng)前WEB應(yīng)用。
二、ServletContext對(duì)象可以通過(guò)ServletConfig.getServletContext方法獲得對(duì)Servlet對(duì)象的引用,也可以通過(guò)this.getServletContext90來(lái)獲得其對(duì)象的引用。
三、由于一個(gè)WEB應(yīng)用中的所有Servlet共享同一個(gè)ServletContext對(duì)象,因此Servlet對(duì)象之間可以通過(guò)ServletContext對(duì)象來(lái)實(shí)現(xiàn)通訊。ServletContext對(duì)象通常也被稱之為Context域?qū)ο蟆9擦奶焓揖褪怯玫剿?br/>四、如何使用ServletContext?
1.如何獲得ServletContext對(duì)象?
ServletContext sc=this.getServletContext();
2.可以將ServletContext想象成一張表,這個(gè)和session非常相似。
添加屬性:setAttribute(String name,Object ob);
得到值:getAttribute(String name);
刪除屬性:removedAttribute(String name);
3.生命周期
ServletContext中的屬性的生命周期從開(kāi)始創(chuàng)建到服務(wù)器關(guān)閉而結(jié)束
五、ServletContext應(yīng)用
1.可以被項(xiàng)目中多個(gè)servlet共享
2.獲取wenb應(yīng)用的初始化參數(shù)。例如:在web.xml中我們有這樣一段代碼,
如果
String value=this.getServletContext().getInitParameter("name");
結(jié)果value的值是scott
如果
String value=this.getServletConfig().getIn.getInitParameter("name");
結(jié)果value的值也是scott
3.可以請(qǐng)求轉(zhuǎn)發(fā)
(1)response.sendRedirect("/web應(yīng)用名/資源名");
(2)request.getRequestDispatcher("/資源名").forward(request,response)===this.getServletContext.getRequestDispatcher("/資源名").forward(request,response);
4.讀取web應(yīng)用的資源文件
(1)資源文件寫(xiě)在WebRoot下面
1>讀取資源文件內(nèi)容,例如:有一個(gè)msql.properties文件
文件內(nèi)容如下:
username=scott
password=123
如何讀取:
InputStream is=this.getServletContext().getresourceAsStream("msql.properties");//讀取到文件
Propreties pp=new Propreties();
pp.load(is);
System.out.println("name="+pp.getProperty("username"));//結(jié)果是scott
2>讀取文件的全路徑,例如:webRoot下有一個(gè)/imgs/1.jpg文件
String Path=this.getServletContext().getRealPath("/imgs/1.jpg");
(2)資源文件在src下面則使用類(lèi)加載器
隨便挑選src文件下的某個(gè)類(lèi)例如:Servlet.java
InputStream is=Servlet.class.getClassloader.getResourceAsStream("文件名字");
到此,相信大家對(duì)“ServletContext的詳細(xì)介紹”有了更深的了解,不妨來(lái)實(shí)際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!