Eclipse加载错误的文件

时间:2013-05-06 06:17:56

标签: eclipse jsp

我有两个档案 - 1)JSP文件 2)HTML文件

每当我运行项目时,首先执行jsp。我该如何先运行HTML?

2 个答案:

答案 0 :(得分:0)

使用以下命令更改web.xml文件的结构:

<welcome-file-list>
 <welcome-file>Name of the html file</welcome-file>
</welcome-file-list>

答案 1 :(得分:0)

web.xml中,您可以先提供需要显示的文件。

默认情况下,它是下面的一个。

<welcome-file>index.html</welcome-file>

请在此处提供您的html文件名。

<welcome-file>MyHtml.html</welcome-file>