将下面的代码加入到web.xml文件中
<!-- 404|500 http://www.dukai168.cn-->
<!-- 404 页面不存在错误 -->
<error-page>
<error-code>404</error-code>
<location>/error/error.htm</location>
</error-page>
<!-- 500 服务器内部错误 -->
<error-page>
<error-code>500</error-code>
<location>/error/error.htm</location>
</error-page>
<!-- 404|500 -->