在web中加入
<error-page>
<error-code>404</error-code>
<location>/err.jsp</location>
</error-page>
<error-page>
<error-code>500</error-code>
<location>/err.jsp</location>
</error-page>
注:err.jsp为自己定义的jsp页面
在jsp中加入 红色文字 isErrorPage="true"
<%@ page language="java" contentType="text/html; charset=utf-8"
isErrorPage="true" pageEncoding="utf-8"%>