監(jiān)聽器的代碼
import java.io.FileInputStream;
import javax.servlet.ServletContext;
import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;
import javax.servlet.annotation.WebListener;
@WebListener
public class ContextLoaderListener implements ServletContextListener {
?? ?/*
?? ? * 監(jiān)聽ServletContext對象創(chuàng)建的?? ServletContext對象在服務器啟動后自動創(chuàng)建
?? ? * 在服務器啟動后自動調(diào)用
?? ? */
?? ?@Override
?? ?public void contextInitialized(ServletContextEvent sce) {
?? ??? ?//加載資源文件
?? ??? ?//1.獲取ServletContext對象
?? ??? ?ServletContext servletContext=sce.getServletContext();
?? ??? ?//2.加載資源文件
??????? String contextConfigLocation = servletContext.getInitParameter("contextConfigLocation");
??????? //3.獲取真實路徑
??????? String realPath = servletContext.getRealPath(contextConfigLocation);
??????? //4.加載進內(nèi)存
??????? try{
??????????? FileInputStream fis = new FileInputStream(realPath);
??????????? System.out.println(fis);
??????? }catch (Exception e){
??????????? e.printStackTrace();
??????? }
??????? System.out.println("ServletContext對象被創(chuàng)建了。。。");
?? ?}
?? ?
?? ?/*
?? ? * 在服務器關閉后,ServletContext對象被銷毀。當服務器正常關閉后該方法被調(diào)用
?? ? */
?? ?@Override
?? ?public void contextDestroyed(ServletContextEvent sce) {
?? ??? ?System.out.println(" ServletContext對象被銷毀了");
?? ?}
}
標簽: