您的位置:首页 > 编程语言 > Java开发

web.xml配置错误页面转发

2016-12-07 09:29 393 查看
<error-page>

<error-code>错误编码</error-code>

<location>转发路径</location>

</error-page>

如:

<error-page><error-code>404</error-code><location>/error.jsp</location></error-page>

配置错误类型转发

<error-page><error-type>错误类型</error-type><location>转发路径</location></error-page>

如:

<error-page>

<exception-type>java.lang.NumberFormatException</exception-type>

<location>/error.jsp</location>

</error-page>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  java