首页 > 基础资料 博客日记

javaweb:通过web.xml实现错误页面的定制

2023-08-05 17:10:44基础资料围观204

Java资料网推荐javaweb:通过web.xml实现错误页面的定制这篇文章给大家,欢迎收藏Java资料网享受知识的乐趣

常见的错误页面类型有很多,这里我们以404和500为例,404是找不到需要访问的资源,而502是服务器的配置错误。

我们首先建立两个页面,一个是404.jsp,一个是500.jsp

 

 

404.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>404</title>
</head>
<body>
<img alt="" src="/error/images/404.png" width="800" height="600">
</body>
</html>

500.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>500</title>
</head>
<body>
<img alt="" src="/error/images/500.png" width="800" height="600">
</body>
</html>

再写一个测试500的页面

500test.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>500test</title>
</head>
<body>

<% int i = 1/0;%>

</body>
</html>

配置web.xml文件

    <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>

进行测试

首先我们访问一个不存在的页面测试404

 

 然后我们访问500test.jsp测试500

 

 测试结束,没有问题。

 

(本文仅作个人学习记录用,如有纰漏,敬请指正)


文章来源:https://www.cnblogs.com/jmsstudy/p/16527310.html
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系邮箱:jacktools123@163.com进行投诉反馈,一经查实,立即删除!

标签:

相关文章

本站推荐

标签云