摘要:一對象在的配置文件中,可以使用一個或多個標簽為配置一些初始化參數。進而,程序員通過對象就可以得到當前的初始化參數信息。對象通常也被稱之為域對象。
一、ServletConfig對象
在Servlet的配置文件中,可以使用一個或多個
當servlet配置了初始化參數后,web容器在創建servlet實例對象時,會自動將這些初始化參數封裝到ServletConfig對象中,并在調用servlet的init方法時,將ServletConfig對象傳遞給servlet。進而,程序員通過ServletConfig對象就可以得到當前servlet的初始化參數信息。
首先,需要創建私有變量:private ServletConfig config = null;
其次,要重寫init方法,傳入config,令this.config = config;從而獲得ServletConfig對象
最后,就可以獲得
//1.獲取初始化參數 String value1 = this.config.getInitParameter("x1"); //獲得配置文檔中標簽下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); }
在開發中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");
String configFile = this.config.getInitParameter("config");
二、ServletContext對象WEB容器在啟動時,它會為每個WEB應用程序都創建一個對應的ServletContext對象,它代表當前web應用。
(1)ServletContext對象應用1:多個web組件之間使用它實現數據共享ServletConfig對象中維護了ServletContext對象的引用,開發人員在編寫servlet時,可以通過ServletConfig.getServletContext方法獲得ServletContext對象。
獲取ServletContext對象的方法:
1.在javax.servlet.Filter中直接獲取 (通過ServletConfig) ServletContext context = config.getServletContext(); 2.在HttpServlet中直接獲取(直接在對象中獲取) this.getServletContext() 3.在其他方法中,通過HttpRequest獲得 request.getSession().getServletContext();
由于一個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轉發至JSP
由于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工程中,不同位置的資源文件的讀取方式
一、當資源文件在包下面時
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);
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)注意:用類裝載器讀取資源文件時,千萬要注意,資源文件絕對不能太大,否則極易導致內存溢出
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/70897.html
摘要:使用技術開發應用程序深入了解的機制對應用的開發將有重要的推動作用而想深入了解的機制就不得不了解包包中包含了個接口個類和個異常類它們分別是接口和類和異常類和的生命周期在的接口中定義了一個的生命周期方法分別是和演示了生命周期方法的簡單在中如何獲 使用 Java 技術開發 WEB 應用程序 , 深入了解 Servlet 的機制對應用的開發將有重要的推動作用 . 而想深入了解 Servlet ...
閱讀 1470·2019-08-30 15:55
閱讀 1172·2019-08-30 15:52
閱讀 1282·2019-08-29 13:53
閱讀 1465·2019-08-29 11:19
閱讀 2964·2019-08-26 13:29
閱讀 527·2019-08-26 11:33
閱讀 2587·2019-08-23 17:20
閱讀 1022·2019-08-23 14:14