web.xml配置error-page
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了web.xml配置error-page相关的知识,希望对你有一定的参考价值。
一. 通过错误码来配置error-page
<error-page> <error-code>404</error-code> <location>/error.jsp</location> </error-page>
注:系统出现404错误时,跳到处理页面error.jsp
二. 通过异常的类型配置error-page.
<error-page> <exception-type>java.lang.NullException</exception-type> <location>/error.jsp</location> </error-page>
注:系统发生java.lang.NullException异常时,跳到处理页面error.jsp
以上是关于web.xml配置error-page的主要内容,如果未能解决你的问题,请参考以下文章
JSP---web.xml中统一配置全站错误处理页面,提高网站的友好度
如何在 servlet 3.0 的 web.xml-less 中定义 <welcome-file-list> 和 <error-page>?