1. 程式人生 > >修改 tomcat 預設頁為自己的專案

修改 tomcat 預設頁為自己的專案

方法一:

   也是最直接的辦法,就是 刪掉 webapp下的 ROOT 專案

然後把自己的專案更名為ROOT

方法二:

修改 tomcat 配置檔案 conf  下面的 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" />
        <!-- 在此出插入 Context  標籤 改變預設主頁 -->

 </Host>

在 結束標籤 </Host> 前面加上 :

<Context path="" docBase="myProject" debug="0" reloadable="true" />

就可以了.

注意:  假如放在 webapp 下面的是 war 包,那麼要重啟一次 tomcat

第一次 解析war包為可用檔案,解析後 在重啟下 tomcat 就會找到你的 專案檔案

還有,就是要在 專案的WEB-INF目錄下的 web.xml 配置檔案中 編寫 專案起始頁

一般會自動生成,把 index.html 或者 index.jsp改為你的 檔名即可

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns="http://java.sun.com/xml/ns/javaee"
	xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
	version="2.5">
	<display-name>jacktu</display-name>
	<welcome-file-list>
        <!-- 此處是專案的起始頁 -->
		<welcome-file>index.html</welcome-file>
		<welcome-file>index.htm</welcome-file>
		<welcome-file>index.jsp</welcome-file>
		<welcome-file>default.html</welcome-file>
		<welcome-file>default.htm</welcome-file>
		<welcome-file>default.jsp</welcome-file>
	</welcome-file-list>