2016-05-20 85 views
1

我使用的是Tomcat 8.x.我的網站正在的Tomcat:如何指定在server.xml中重新加載=「true」或重新加載=「假」?

/web應用/ ROOT

我沒有這個網站的任何明確的<Context>。我正在尋找一個如何使這個網站的reloadable =「true」或reloadable =「false」的例子。我在網上搜索並知道它可以通過server.xml中的進行設置。但是,我無法找到有關在server.xml中執行的示例。

謝謝。

+1

你有沒有考慮諮詢Tomcat文檔? – EJP

+0

是的。我在Tomcat 8.x文檔中看到了這一點:'在主conf/server.xml中的主機元素內部.'但我不確定。我想看看例子。感謝或鳴叫。 – curious1

回答

1

查看如何命名的預訂的申請中的server.xml.You配置也可能會看到默認情況下,閥門聲明這是用於訪問日誌記錄,我只是一直在那兒,即使它並不重要,在這裏,你可能會在默認的server.xml中看到這個。

<Host name="localhost" appBase="webapps" 
 
      unpackWARs="true" autoDeploy="true"> 
 

 
     <!-- SingleSignOn valve, share authentication between web applications 
 
      Documentation at: /docs/config/valve.html --> 
 
     <!-- 
 
     <Valve className="org.apache.catalina.authenticator.SingleSignOn" /> 
 
     --> 
 

 
     <!-- Access log processes all example. 
 
      Documentation at: /docs/config/valve.html 
 
      Note: The pattern used is equivalent to using pattern="common" --> 
 
     <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs" 
 
       prefix="localhost_access_log" suffix=".txt" 
 
       pattern="%h %l %u %t &quot;%r&quot; %s %b" /> 
 
\t \t \t <Context docBase="Booking" path="/Booking" reloadable="true" /> 
 
    </Host>