标签:
<!-- 指定出错的代码 -->
<error-page>
<error-code>404</error-code>
<location>/WEB-INF/error.jsp</location>
</error-page>
<error-page>
<error-code>500</error-code>
<location>/WEB-INF/error.jsp</location>
</error-page>
<error-page>
<!-- 异常类型 -->
<exception-type>java.lang.Exception</exception-type>
<location>/WEB-INF/error.jsp</location>
</error-page>
web.xml中配置如上
标签:
原文地址:http://www.cnblogs.com/yangxu6069/p/5821585.html