<!-- 404 页面不存在错误 -->
<error-page> <error-code>404</error-code> <location>/errorPage404.jsp</location> </error-page> <!-- 500 服务器内部错误 --> <error-page> <error-code>500</error-code> <location>/errorPage500.jsp</location> </error-page> <!-- .lang.Exception异常错误,依据这个标记可定义多个类似错误提示 --> <error-page> <exception-type>java.lang.Exception</exception-type> <location>/exceptionError.jsp</location> </error-page>