您的位置:首页 > 其它

web.xml之welcome-file-list、error-page

2011-09-13 15:09 323 查看
welcome-file-list

定义:

<welcome-file-list>
<welcome-file>login.jsp</welcome>
</welcome-file-list>


作用:用来指定WEB应用首页名称。

error-page

定义:

<error-page>
<error-code>错误代码(如404)</error-code>
<location>对应的页面(如/404.jsp)</location>
</error-page>


或者

<error-page>
<exception-type>完整的Java异常类型(如java.lang.Exception)</exception-type>
<location>对应的页面(如/error.jsp)</location>
</error-page>


作用:用来指定发生特定htm的error-code或发生特定Java异常时访问的Web页面
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: