在Glassfish中设置应用程序的默认资源

时间:2014-03-22 09:39:13

标签: glassfish

如何在Glassfish中为应用设置默认资源?例如,如果我输入:

http://localhost/MyApp/

我希望它使用资源xyz.html

1 个答案:

答案 0 :(得分:0)

web.xml文件中使用welcome-file属性

<welcome-file-list>
   <welcome-file>xyz.html</welcome-file>
</welcome-file-list>