Maven webapp原型项目中设置的欢迎页面在哪里
Where is the welcome page set in a Maven webapp archetype project
我用 webapp 原型创建了一个 Maven 项目。 /src/main/webapp 文件夹中只有一个 index.jsp 文件。 web.xml 文件没有提到任何欢迎文件。没有其他提及或其他任何设置。在 运行 应用程序上,显示 index.jsp 页面。这个页面在哪里设置为欢迎页面?
引自https://www.javatpoint.com/welcome-file-list
默认情况下,服务器按以下顺序查找欢迎文件:
1) web.xml
中的欢迎文件列表
2) index.html
3) index.htm
4) index.jsp
如果找到 none 个这些文件,服务器将呈现 404 错误。
我用 webapp 原型创建了一个 Maven 项目。 /src/main/webapp 文件夹中只有一个 index.jsp 文件。 web.xml 文件没有提到任何欢迎文件。没有其他提及或其他任何设置。在 运行 应用程序上,显示 index.jsp 页面。这个页面在哪里设置为欢迎页面?
引自https://www.javatpoint.com/welcome-file-list
默认情况下,服务器按以下顺序查找欢迎文件:
1) web.xml
中的欢迎文件列表2) index.html
3) index.htm
4) index.jsp
如果找到 none 个这些文件,服务器将呈现 404 错误。