再web.xml中配置
<error-page>
<error-code>404</error-code>
<location>/error.jsp</location>
</error-page>
增加error.jsp页面
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<h1>404</h1>
</body>
</html>
启动项目 访问:http://localhost:9090/test-web/main11.jsp
页面提示