在WEB.XML中的可以配置错误和异常页。
1、通过错误代码进行设置
<error-page>
<error-code>404</error-code>
<location>/error/404.jsp</location>
</error-page>
2、通过异常类型进行设置
<error-page>
<exception-type>java.io.IOException</exception-type>
<location>/error/ioexception.jsp</excepiton-type>
</error-page>