怎样使用ServletContextListener接口
ServletContext : 每一个web应用都有一个 ServletContext与之相关联。 ServletContext对象在应用启动的被创建,在应用关闭的时候被销毁。 ServletContext在全局范围内有效,类似于应用中的一个全局变量。
ServletContextListener: 使用listener接口,开发者能够在为客户端请求提供服务之前向ServletContext中添加任意的对象。这个对象在ServletContext启动的时候被初始化,然后在ServletContext整个运行期间都是可见的。该接口拥有两个方法如下所示:
1 void contextDestoryd(ServletContextEvent sce); 2 void contextInitialized(ServletContextEvent sce);
用户需要创建一个java类实现 javax.servlet.ServletContextListener接口并提供上面两个方法的实现。
示例: 当你需要在处理任何客户端请求之前创建一个数据库连接,并且希望在整个应用过程中该连接都是可用的,这个时候ServletContextListener接口就会十分有用了。
1 package com.database; 2 import javax.servlet.ServletContext; 3 import javax.servlet.ServletContextAttributeEvent; 4 import javax.servlet.ServletContextAttributesListener; 5 import javax.servlet.ServletContextEvent; 6 import javax.servlet.ServletContextListener; 7 import com.database.DbConnection; 8 9 public class DatabaseContextListener implements ServletContextListener { 10 11 private ServletContext context = null; 12 private Connection conn = null; 13 14 public DatabaseContextListener() { 15 16 } 17 18 19 //该方法在ServletContext启动之后被调用,并准备好处理客户端请求 20 public void contextInitialized(ServletContextEvent event) { 21 this.context = event.getServletContext(); 22 conn = DbConnection.getConnection; 23 // 这里DbConnection是一个定制好的类用以创建一个数据库连接 24 context = setAttribute(”dbConn”,conn); 25 } 26 27 //这个方法在ServletContext 将要关闭的时候调用 28 public void contextDestroyed(ServletContextEvent event){ 29 this.context = null; 30 this.conn = null; 31 } 32 }
然后部署该类,并在web.xml文件中添加
1 <listener> 2 com.database.DatabaseContextListener 3 </listener>
一旦web应用启动的时候,我们就能在任意的servlet或者jsp中通过下面的方式获取数据库连接:
1 Connection conn = (Connection) getServletContext().getAttribute(”dbConn”);