1. 程式人生 > >優化Web伺服器的啟動速度

優化Web伺服器的啟動速度

方法一、更改index.html的配置,版本改為3.0,新增absolute-ordering標籤

<web-app xmlns="http://java.sun.com/xml/ns/javaee"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
                      http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
  version="3.0"
  metadata-complete="true">
  <!--  3.0以後才有absolute-ordering,用來掃描架包,寫為空,表示不掃描任何架包,提升啟動速度  -->
  <absolute-ordering></absolute-ordering>

方法二、tomcat的路徑,找到webapps,只保留“ROOT資料夾”和 “自己的工程的資料夾”,其他的全部刪除