0

我们的 Web 应用程序包含 index.html 和 index.jsp,并且我们使用 Apache Tomcat 6。当一个请求具有直到上下文的路径(例如,http://localhost:8080/mysite)到达 tomcat 时,哪个会送达吗?

这是 index.html 还是 index.jsp ?

是否可配置?

4

1 回答 1

3

index.html将被优先考虑,但您可以welcome-file-listweb.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

于 2010-01-12T14:55:39.883 回答