我有两个档案 - 1)JSP文件 2)HTML文件
每当我运行项目时,首先执行jsp。我该如何先运行HTML?
答案 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>