ServletConfig与ServletContext对象详解java
1、ServletConfig对象
在Servlet的配置文件中,可使用一个或多个<init-param>标签为servlet配置一些初始化参数。(配置在某个servlet标签或者整个web-app下)程序员
当servlet配置了初始化参数后,web容器在建立servlet实例对象时,会自动将这些初始化参数封装到ServletConfig对象中,并在调用servlet的init方法时,将ServletConfig对象传递给servlet。进而,程序员经过ServletConfig对象就能够获得当前servlet的初始化参数信息。web
首先,须要建立私有变量:private ServletConfig config = null;数据库
其次,要重写init方法,传入config,令this.config = config;从而得到ServletConfig对象tomcat
最后,就能够得到<init-parm>中的配置信息了app
//获取初始化参数
String value1 = this.config.getInitParameter("x1");jvm
//得到配置文档中<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);
}jsp
在开发中ServletConfig的做用有以下三个:this
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)注意:用类装载器读取资源文件时,千万要注意,资源文件绝对不能太大,不然极易致使内存溢出