生活随笔
收集整理的這篇文章主要介紹了
Servlet配置错误处理页面/配置错误页面
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
寫一個錯誤處理頁面 error.html
<html>
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=UTF-8">
<title>Insert title here
</title> </head>
<body style="font-size:30px;color:red;"> 發生了系統錯誤,請稍后
<a href="addEmp.html">重試
</a>
</body>
</html>
在 web.xml 文件配置錯誤處理頁面
<?xml version="1.0" encoding="UTF-8"?> <web-app version="2.4"
xmlns="http://java.sun.com/xml/ ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema -instance" xsi:schemaLocation="http://java.sun.com/xml/ ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"><servlet>
<servlet-name>addEmpServlet
</servlet-name>
<servlet-class>web.AddEmpServlet
</servlet-class>
</servlet> <servlet-mapping>
<servlet-name>addEmpServlet
</servlet-name>
<url-pattern>/add
</url-pattern>
</servlet-mapping><error-page>
<error-code>500
</error-code>
<location>/error.html
</location>
</error-page>
</web-app>
總結
以上是生活随笔為你收集整理的Servlet配置错误处理页面/配置错误页面的全部內容,希望文章能夠幫你解決所遇到的問題。
如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。