自定义jsp页面的404——500错误

将下面的代码加入到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 --> 

你可能感兴趣的:(自定义jsp页面的404——500错误)