91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

利用java怎么在項目啟動時執行指定的方法

發布時間:2020-11-27 17:25:45 來源:億速云 閱讀:229 作者:Leah 欄目:編程語言

這篇文章將為大家詳細講解有關利用java怎么在項目啟動時執行指定的方法,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

1.配置web.xml

 <listener> 
 <listener-class>com.listener.InitListener</listener-class> 
</listener>

2.編寫InitListener類

package com.listener;

import java.io.File;

import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;

import com.seegot.util.PropertyUtil;

public class InitListener implements ServletContextListener {

 @Override
 public void contextDestroyed(ServletContextEvent arg0) {
  // TODO Auto-generated method stub

 }

 @Override
 public void contextInitialized(ServletContextEvent arg0) {
  // TODO Auto-generated method stub
  System.out.println("================>[ServletContextListener]自動加載啟動開始."); 
  String resourceFilesPath = PropertyUtil.getProperty("tempZipPath");
  clearFiles(resourceFilesPath);
 }
 // 刪除文件和目錄
 private static boolean clearFiles(String workspaceRootPath) {
  File file = new File(workspaceRootPath);
  if (file.exists()) {
   deleteFile(file);
  }
  // resources 文件夾被刪除后需新建
  if (!file.exists() && workspaceRootPath.endsWith("resources")) {
   return file.mkdir();
  } else if (!file.exists()) {
   return true;
  }
   return false;
  }

 private static boolean deleteFile(File file) {
  if (file.isDirectory()) {
   File[] files = file.listFiles();
   for (int i = 0; i < files.length; i++) {
    deleteFile(files[i]);
   }
  }
   return file.delete();
 } 
}

關于利用java怎么在項目啟動時執行指定的方法就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

南陵县| 徐州市| 界首市| 右玉县| 贵港市| 南华县| 河津市| 宝应县| 左权县| 石家庄市| 宣汉县| 香港| 田林县| 万山特区| 区。| 和平县| 连云港市| 辽源市| 凌海市| 基隆市| 三门峡市| 大厂| 肇源县| 马尔康县| 沙雅县| 大同市| 马边| 洪洞县| 台中县| 奇台县| 西贡区| 理塘县| 内乡县| 金乡县| 府谷县| 松滋市| 湖口县| 红桥区| 林芝县| 泰州市| 台北市|