BlogListener.java
上传用户:wlfwy2004
上传日期:2016-12-12
资源大小:33978k
文件大小:1k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. package com.opensource.blog.web.servlet;
  2. import javax.servlet.*;
  3. import javax.servlet.http.*;
  4. import java.io.*;
  5. import java.util.*;
  6. import com.opensource.blog.comm.*;
  7. public class BlogListener
  8.     extends HttpServlet implements ServletContextListener {
  9.   //Notification that the web module is ready to process requests
  10.   public void contextInitialized(ServletContextEvent sce) {
  11.     String rootpath = sce.getServletContext().getRealPath("/");
  12.     //System.out.println(sce.getServletContext().getServletContextName());
  13.     if (rootpath != null) {
  14.       rootpath = rootpath.replaceAll("\\", "/");
  15.     }
  16.     else {
  17.       rootpath = "/";
  18.     }
  19.     Constant.ROOTPATH = rootpath;
  20.   }
  21.   //Notification that the servlet context is about to be shut down
  22.   public void contextDestroyed(ServletContextEvent sce) {
  23.   }
  24. }