JavaWeb中错误页面的定制

JavaWeb中错误页面中的配置

web.xml中配置

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
         version="4.0"
         metadata-complete="true">
    <error-page>
        <error-code>404</error-code>
        <location>/error/404.jsp</location>
    </error-page>
    <error-page>
        <error-code>500</error-code>
        <location>/error/500.jsp</location>
    </error-page>
</web-app>

jsp中设置

给正常页面设置错误页面

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%--设置page的错误提示页面为error/500.jsp--%>
<%@ page errorPage="error/500.jsp" %>
<html>
<head>
    <title>Title</title>
</head>
<body>
<%= 1/0 %>
</body>
</html>

猜你喜欢

转载自blog.csdn.net/m0_53509974/article/details/114589437