我需要向用户显示一条消息:“应用程序将停机两小时”。到目前为止,我将index.htm
,login.jsp
重新命名为index.html
,我上传了另一个login.jsp
。我还上传了另一个指向我重命名的{{1}}的html页面让我进来。
有没有其他方法可以做到这一点,更简单?
我的应用服务器是SunONE 6.1
答案 0 :(得分:1)
Web应用程序包含名为web.xml
的文件,也称为部署描述符。
它包含以下标记,默认执行。
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
您可以更改维护时间的默认欢迎文件列表,然后重新启动Web服务器。
答案 1 :(得分:0)
在部署描述符文件中定义默认登录页面。当任何访问者访问您的页面时,它应该落在该页面上。不提供导航到其他页面的任何链接。
如果您希望获得this question之类的内容,则可以按照回复进行操作。