成人国产在线小视频_日韩寡妇人妻调教在线播放_色成人www永久在线观看_2018国产精品久久_亚洲欧美高清在线30p_亚洲少妇综合一区_黄色在线播放国产_亚洲另类技巧小说校园_国产主播xx日韩_a级毛片在线免费

資訊專欄INFORMATION COLUMN

ServletConfig與ServletContext對象詳解

X1nFLY / 3505人閱讀

摘要:一對象在的配置文件中,可以使用一個或多個標(biāo)簽為配置一些初始化參數(shù)。進(jìn)而,程序員通過對象就可以得到當(dāng)前的初始化參數(shù)信息。對象通常也被稱之為域?qū)ο蟆?/p>

一、ServletConfig對象

在Servlet的配置文件中,可以使用一個或多個標(biāo)簽為servlet配置一些初始化參數(shù)。(配置在某個servlet標(biāo)簽或者整個web-app下)
當(dāng)servlet配置了初始化參數(shù)后,web容器在創(chuàng)建servlet實例對象時,會自動將這些初始化參數(shù)封裝到ServletConfig對象中,并在調(diào)用servlet的init方法時,將ServletConfig對象傳遞給servlet。進(jìn)而,程序員通過ServletConfig對象就可以得到當(dāng)前servlet的初始化參數(shù)信息。
首先,需要創(chuàng)建私有變量:private ServletConfig config = null;
其次,要重寫init方法,傳入config,令this.config = config;從而獲得ServletConfig對象
最后,就可以獲得中的配置信息了

//1.獲取初始化參數(shù)
  String value1 = this.config.getInitParameter("x1");
//獲得配置文檔中標(biāo)簽下name對應(yīng)的value
  String vlaue2 = this.config.getInitParameter("x2");
  
  //2.獲取所有的初始化參數(shù)(用Enumeration接收)
  Enumeration e = this.config.getInitParameterNames();
  while(e.hasMoreElements()){
   String name = (String) e.nextElement();
   String value = this.config.getInitParameter(name);
   System.out.println(name + "=" + value);
  }

在開發(fā)中ServletConfig的作用有如下三個:

(1)獲得字符集編碼

String charset = this.config.getInitParameter("charset");

(2)獲得數(shù)據(jù)庫連接信息

String url = this.config.getInitParameter("url");
String username = this.config.getInitParameter("username");
String password = this.config.getInitParameter("password");

(3)獲得配置文件

String configFile = this.config.getInitParameter("config");

二、ServletContext對象

WEB容器在啟動時,它會為每個WEB應(yīng)用程序都創(chuàng)建一個對應(yīng)的ServletContext對象,它代表當(dāng)前web應(yīng)用。

(1)ServletContext對象應(yīng)用1:多個web組件之間使用它實現(xiàn)數(shù)據(jù)共享

ServletConfig對象中維護(hù)了ServletContext對象的引用,開發(fā)人員在編寫servlet時,可以通過ServletConfig.getServletContext方法獲得ServletContext對象。
獲取ServletContext對象的方法:

    1.在javax.servlet.Filter中直接獲取 (通過ServletConfig)
    ServletContext context = config.getServletContext(); 

    2.在HttpServlet中直接獲取(直接在對象中獲取) 
    this.getServletContext() 
    
    3.在其他方法中,通過HttpRequest獲得 
    request.getSession().getServletContext(); 

由于一個WEB應(yīng)用中的所有Servlet共享同一個ServletContext對象,因此Servlet對象之間可以通過ServletContext對象來實現(xiàn)通訊。ServletContext對象通常也被稱之為context域?qū)ο蟆?br>在serlvet中,可以使用如下語句來設(shè)置數(shù)據(jù)共享

  ServletContext context = this.getServletContext();  //servletContext域?qū)ο?  context.setAttribute("data", "共享數(shù)據(jù)"); //向域中存了一個data屬性
在另一個servlet中,可以使用如下語句來獲取域中的data屬性
  ServletContext context = this.getServletContext();
  String value = (String) context.getAttribute("data");  //獲取域中的data屬性
  System.out.println(value);
(2)通過servletContext對象獲取到整個web應(yīng)用的配置信息
  String url = this.getServletContext().getInitParameter("url");
  String username = this.getServletContext().getInitParameter("username");
  String password = this.getServletContext().getInitParameter("password");
(3)通過servletContext對象實現(xiàn)servlet轉(zhuǎn)發(fā)至JSP

由于servlet中的java數(shù)據(jù)不易設(shè)置樣式,所以serlvet可以將java數(shù)據(jù)轉(zhuǎn)發(fā)到JSP頁面中進(jìn)行處理

  this.getServletContext().setAttribute("data","serlvet數(shù)據(jù)轉(zhuǎn)發(fā)");
  RequestDispatcher rd = this.getServletContext().getRequestDispatcher("/viewdata.jsp");
  rd.forward(request, response);
(4)通過servletContext對象讀取資源文件

在實際開發(fā)中,用作資源文件的文件類型,通常是:xml、properties,而讀取xml文件必然要進(jìn)行xml文檔的解析,所以以下例子只對properties文件進(jìn)行讀取(在一個web工程中,只要涉及到寫地址,建議最好以/開頭)
在web工程中,我們一般來說,是不能采用傳統(tǒng)方式讀取配置文件的,因為相對的是jvm的啟動目錄(tomcat的bin目錄),所以我們要使用web絕對目錄來獲取配置文件的地址
讀取資源文件的三種方式:
第一種:使用ServletContext的getResourceAsStream方法:返回資源文件的讀取字節(jié)流

  InputStream in = this.getServletContext().getResourceAsStream("/WEB-INF/classes/db.properties");
  Properties prop = new Properties();  
  prop.load(in);
  String url = prop.getProperty("url");

第二種:使用ServletContext的getRealPath方法,獲得文件的完整絕對路徑path,再使用字節(jié)流讀取path下的文件

  String path = this.getServletContext().getRealPath("/WEB-INF/classes/db.properties");
  String filename = path.substring(path.lastIndexOf("")+1); 
  //相比第一種方法的好處是:除了可以獲取數(shù)據(jù),還可以獲取資源文件的名稱
  FileInputStream in = new FileInputStream(path);
  Properties prop = new Properties();
  prop.load(in);
  String url = prop.getProperty("url");

第三種:使用ServletContext的getResource方法,獲得一個url對象,調(diào)用該類的openStream方法返回一個字節(jié)流,讀取數(shù)據(jù)

  URL url = this.getServletContext().getResource("/WEB-INF/classes/db.properties");
  InputStream in = url.openStream();
  Properties prop = new Properties();
  prop.load(in);
  String url1 = prop.getProperty("url");
(5)web工程中,不同位置的資源文件的讀取方式

一、當(dāng)資源文件在包下面時
InputStream in = this.getServletContext().getResourceAsStream("/WEB-INF/classes/cn/itcast/context/db.properties");
System.out.println(in);

二、資源文件在web-inf下
in = this.getServletContext().getResourceAsStream("/WEB-INF/db.properties");
System.out.println(in);

三、資源文件在web工程中
in = this.getServletContext().getResourceAsStream("/db.properties");
System.out.println(in);

(6)在非servlet程序中如何讀取配置文件:用類裝載器

1)用類裝載方式讀取
in = StudentDao.class.getClassLoader().getResourceAsStream("cn/itcast/context/db.properties");
2)用類裝載方式讀取,把資源當(dāng)作url對待
URL url = StudentDao.class.getClassLoader().getResource("db.properties");
這樣可以獲得資源文件名稱:String path = url.getPath();
3)注意:在線程休眠過程中,即使改動了資源文件,獲取到的還是原始內(nèi)容
解決方案:

  URL url = StudentDao.class.getClassLoader().getResource("db.properties");
  String path = url.getPath();
  
  FileInputStream in = new FileInputStream(path);
  Properties prop = new Properties();
  prop.load(in);
  System.out.println(prop.getProperty("url"));
  
  try {
   Thread.sleep(1000*15);
  } catch (InterruptedException e) {
    e.printStackTrace();
  }
  in = new FileInputStream(path);
  prop = new Properties();
  prop.load(in);
  System.out.println(prop.getProperty("url"));

4)注意:用類裝載器讀取資源文件時,千萬要注意,資源文件絕對不能太大,否則極易導(dǎo)致內(nèi)存溢出

文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請注明本文地址:http://systransis.cn/yun/70897.html

相關(guān)文章

  • servlet詳解

    摘要:初始化的錯誤處理在初始化期間,實例可能通過拋出或者異常表明它不能進(jìn)行有效服務(wù)。每一個請求由類型的對象代表,而使用回應(yīng)該請求。在請求的情況下,容器必須提供代表請求和回應(yīng)的和的具體實現(xiàn)。表明不能對請求進(jìn)行處理,可能是暫時的,也可能是永久的。 servlet詳解 Servlet有良好的生存期的定義,包括如何加載、實例化、初始化、處理客戶端請求以及如何被移除。這個生存期由javax.Serv...

    elva 評論0 收藏0
  • Servlet

    摘要:一個應(yīng)用程序中可以有很多,這些都共享同一個對象,我們經(jīng)常將對象叫域?qū)ο?。常用的的獲取對象的向?qū)ο蠼壎〝?shù)據(jù)的從對象取出數(shù)據(jù)的獲取當(dāng)前應(yīng)用的初始化參數(shù)的獲取資源文件,返回流的獲取資源文件,返回路徑 第一個Servlet開發(fā)步驟 01_創(chuàng)建一個普通Java類,實現(xiàn)Servlet接口 02_將寫好的Servlet類,還得配置到web.xml文件中去 Demo01.java 編寫一個簡單的...

    happen 評論0 收藏0
  • 基礎(chǔ)知識: Java servlet

    摘要:使用技術(shù)開發(fā)應(yīng)用程序深入了解的機(jī)制對應(yīng)用的開發(fā)將有重要的推動作用而想深入了解的機(jī)制就不得不了解包包中包含了個接口個類和個異常類它們分別是接口和類和異常類和的生命周期在的接口中定義了一個的生命周期方法分別是和演示了生命周期方法的簡單在中如何獲 使用 Java 技術(shù)開發(fā) WEB 應(yīng)用程序 , 深入了解 Servlet 的機(jī)制對應(yīng)用的開發(fā)將有重要的推動作用 . 而想深入了解 Servlet ...

    biaoxiaoduan 評論0 收藏0

發(fā)表評論

0條評論

X1nFLY

|高級講師

TA的文章

閱讀更多
最新活動
閱讀需要支付1元查看
<