1.在WebRoot文件夹下新建一个error文件夹,在error文件夹中新建一个error404.jsp页面,代码如下:
<%@ page language="java" contentType="text/html; charset=utf-8"
pageEncoding="utf-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>资源存在</title>
</head>
<body>
你访问的路径不存在!
</body>
</html>
2.web.xml配置文件如下:
</error-page>
<!--路径出错跳转到404页面-->
<error-page>
<error-code>404</error-code>
<location>/error/error404.jsp</location>
</error-page>
3.在浏览器中输入错误的路径,则会跳转到error404.jsp页面