0
我們的web應用程序包含index.html和index.jsp,並且我們使用Apache Tomcat 6.當具有直到上下文的路徑(例如,http://localhost:8080/mysite)的請求到達tomcat哪一個將被服務?哪一個會在Tomcat 6中獲得優先級:index.html或index.jsp?
這是index.html還是index.jsp?
它是可配置的嗎?
我們的web應用程序包含index.html和index.jsp,並且我們使用Apache Tomcat 6.當具有直到上下文的路徑(例如,http://localhost:8080/mysite)的請求到達tomcat哪一個將被服務?哪一個會在Tomcat 6中獲得優先級:index.html或index.jsp?
這是index.html還是index.jsp?
它是可配置的嗎?
index.html
將優先考慮,但您可以在welcome-file-list
的web.xml
下更改此項。
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
</welcome-file-list>
在部分請求的情況下,上述結構會嘗試index.jsp
,然後index.html
,然後index.htm
。
最後一個是index.htm不是html,請更正錯字。 – novice 2010-01-12 14:59:30