我有一个Java
应用程序,我正在使用Payara Micro 4.1.2.174
它来部署它。我正在尝试配置index.html
我放在文件夹中的文件src/main/webapp
。但是,无论我做什么,该文件都无法访问,当我尝试在 localhost: 上访问它时,我得到了 404 http://localhost:8080/index.html
。我正在使用 gradle 构建战争文件。我还检查了构建的战争文件,并且 index.html 文件位于存档的根目录。
我正在部署我的应用程序/
,所有路径也可以从以下位置开始/
:
在 [/] 加载应用程序 [ROOT]
我尝试在glassfish-web.xml
文件中添加以下内容,但没有帮助:
<glassfish-web-app error-url="">
<context-root>/</context-root>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
</glassfish-web-app>
有什么我想念的吗?是否有可能index.html
在 Payara Micro 中有一个?
谢谢!