标签:
利用Servlet容器比如Tomcat处理很方便。在web.xml中配置
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" version="2.5">
<display-name>User Center</display-name>
<error-page>
<error-code>404</error-code>
<location>/resources/html/error404.html</location>
</error-page>
</web-app>
404.html页面的内容
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>404错误</title>
</head>
<body>
您访问的资源不存在
</body>
</html>
当访问系统没有的URI时,会自动跳转自404页面
当然,要配置该静态资源不被拦截
标签:
原文地址:http://www.cnblogs.com/ywlaker/p/4760234.html