servletConfig servletContext

ServletConfig與ServletContext對象詳解

(2011-01-17 18:48:25)html

轉載java

標籤:

javaee

分類: 我愛java

ServletConfig與ServletContext對象詳解程序員

1、ServletConfig對象
    在Servlet的配置文件中,能夠使用一個或多個<init-param>標籤爲servlet配置一些初始化參數。(配置在某個servlet標籤或者整個web-app下)web

    當servlet配置了初始化參數後,web容器在建立servlet實例對象時,會自動將這些初始化參數封裝到ServletConfig對象中,並在 調用servlet的init方法時,將ServletConfig對象傳遞給servlet。進而,程序員經過ServletConfig對象就能夠得 到當前servlet的初始化參數信息。數據庫

首先,須要建立私有變量:private ServletConfig config = null;tomcat

其次,要重寫init方法,傳入config,令this.config = config;從而得到ServletConfig對象app

最後,就能夠得到<init-parm>中的配置信息了jvm

//獲取初始化參數
  String value1 = this.config.getInitParameter("x1");jsp

//得到配置文檔中<init-param>標籤下name對應的value
  String vlaue2 = this.config.getInitParameter("x2");
  
  //2.獲取全部的初始化參數(用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);
  }this

    在開發中ServletConfig的做用有以下三個:

1)得到字符集編碼

  String charset = this.config.getInitParameter("charset");
2)得到數據庫鏈接信息

  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");


2、ServletContext對象

  WEB容器在啓動時,它會爲每一個WEB應用程序都建立一個對應的ServletContext對象,它表明當前web應用。

  1)ServletContext對象應用1:多個web組件之間使用它實現數據共享

  ServletConfig對象中維護了ServletContext對象的引用,開發人員在編寫servlet時,能夠經過ServletConfig.getServletContext方法獲 得ServletContext對象。因爲一個WEB應用中的全部Servlet共享同一個ServletContext對象,所以Servlet對象之 間能夠經過ServletContext對象來實現通信。ServletContext對象一般也被稱之爲context域對象。

在serlvet中,能夠使用以下語句來設置數據共享

  ServletContext context = this.getServletContext();  //servletContext域對象
  context.setAttribute("data", "共享數據"); //向域中存了一個data屬性

在另外一個servlet中,能夠使用以下語句來獲取域中的data屬性

  ServletContext context = this.getServletContext();
  String value = (String) context.getAttribute("data");  //獲取域中的data屬性
  System.out.println(value);

  2)經過servletContext對象獲取到整個web應用的配置信息

  String url = this.getServletContext().getInitParameter("url");

  String username = this.getServletContext().getInitParameter("username");
  String password = this.getServletContext().getInitParameter("password");

  3)經過servletContext對象實現servlet轉發

因爲servlet中的java數據不易設置樣式,因此serlvet能夠將java數據轉發到JSP頁面中進行處理

  this.getServletContext().setAttribute("data","serlvet數據轉發");
  RequestDispatcher rd = this.getServletContext().getRequestDispatcher("/viewdata.jsp");
  rd.forward(request, response);

  4)經過servletContext對象讀取資源文件

  在實際開發中,用做資源文件的文件類型,一般是:xml、properties,而讀取xml文件必然要進行xml文檔的解析,因此如下例子只對properties文件進行讀取(在一個web工程中,只要涉及到寫地址,建議最好以/開頭)

  在web工程中,咱們通常來講,是不能採用傳統方式讀取配置文件的,由於相對的是jvm的啓動目錄(tomcat的bin目錄),因此咱們要使用web絕對目錄來獲取配置文件的地址

  讀取資源文件的三種方式:

  第一種:使用ServletContext的getResourceAsStream方法:返回資源文件的讀取字節流

  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,再使用字節流讀取path下的文件

  String path = this.getServletContext().getRealPath("/WEB-INF/classes/db.properties");
  String filename = path.substring(path.lastIndexOf("\\")+1); 

  //相比第一種方法的好處是:除了能夠獲取數據,還能夠獲取資源文件的名稱
  FileInputStream in = new FileInputStream(path);
  Properties prop = new Properties();
  prop.load(in);
  String url = prop.getProperty("url");

  第三種:使用ServletContext的getResource方法,得到一個url對象,調用該類的openStream方法返回一個字節流,讀取數據

  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工程中,不一樣位置的資源文件的讀取方式

  1、當資源文件在包下面時
  InputStream in = this.getServletContext().getResourceAsStream("/WEB-INF/classes/cn/itcast/context/db.properties");
  System.out.println(in);
  
  2、資源文件在web-inf下
  in = this.getServletContext().getResourceAsStream("/WEB-INF/db.properties");
  System.out.println(in);
  
  3、資源文件在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)用類裝載方式讀取,把資源看成url對待

 URL url = StudentDao.class.getClassLoader().getResource("db.properties");

 這樣能夠得到資源文件名稱:String path = url.getPath();

3)注意:在線程休眠過程當中,即便改動了資源文件,獲取到的仍是原始內容

解決方案:

  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)注意:用類裝載器讀取資源文件時,千萬要注意,資源文件絕對不能太大,不然極易致使內存溢出

相關文章
相關標籤/搜索