Springboot学习06-自定义错误页面完整分析

前言

  接着上一篇博客,继续分析Springboot错误页面问题

正文

1-自定义浏览器错误页面(只要将自己的错误页面放在指定的路径下即可)

1-1-Springboot错误页面匹配机制(以404错误为例):

  • 1-在模板引擎下:找templates/error/404.html;如果没有,则继续匹配
  • 2-在模板引擎下:找templates/error/4XX.html;如果没有,则继续匹配
  • 3-在静态资源下:找static/error/404.html;如果没有,则继续匹配
  • 4-匹配最后的“围墙”:WhiteLevel Erro Page页面

1-2-补充说明

1-3-demo示例

1-4-简单自定义页面的缺陷

  • 1-只能展示Springboot默认的返回信息:timestamp时间戳;status状态;error错误提示;exception异常对象;message异常消息等简单返回信息;无法返回自定义业务数据

2-自定义错误的json

2-1-源码分析

//1-自定义Exception
public class DataException extends RuntimeException { public DataException() {
super("数据不存在!");
}
} //2-自定义handleException方法
@ControllerAdvice
public class MyExceptionHandler { @ResponseBody
@ExceptionHandler(DataException.class)
public Map<String,Object> handleException(Exception e){ Map<String,Object> map = new HashMap<String,Object>();
map.put("code","data error");
map.put("msg",e.getMessage()); return map; }
} //3-测试接口
@Controller
public class DemoController { @GetMapping(value="test")
public String toExceptionPage( ){
throw new DataException();
}
}

2-2-页面效果

2-3-缺点:浏览器请求也返回了json数据;不符合期望

3-自定义错误页面,自适应浏览器请求和客户端请求

3-1-源码示例

//1-自定义Exception
public class DataException extends RuntimeException { public DataException() {
super("数据不存在!");
}
} //2-自定义handleException方法
@ControllerAdvice
public class MyExceptionHandler { @ExceptionHandler(DataException.class)
public String handleException(Exception e, HttpServletRequest request){
//传入我们自己的错误状态码 4xx 5xx,否则就不会进入定制错误页面的解析流程
request.setAttribute("javax.servlet.error.status_code",500);
Map<String,Object> map = new HashMap<String,Object>();
map.put("code","data error");
map.put("msg",e.getMessage()); return "forward:/error"; }
} //3-测试接口
@Controller
public class DemoController { @GetMapping(value="test")
public String toExceptionPage( ){
throw new DataException();
}
}

3-2-demo示例

3-3-缺点:虽然已经兼容了浏览器请求和客户端请求;但是无法展示业务数据

4-自定义页面终版:自适应浏览器请求和客户端请求,并且允许返回业务数据

4-1-源码解析

//1-自定义ErrorAttributes
@Component
public class MyErrorAttributes extends DefaultErrorAttributes {   //重写getErrorAttributes方法-添加自己的项目数据
public Map<String, Object> getErrorAttributes(WebRequest webRequest, boolean includeStackTrace) {
Map<String, Object> errorAttributes = super.getErrorAttributes(webRequest,includeStackTrace); errorAttributes.put("myName","我不吃番茄");//自定义数据
errorAttributes.put("myAge","不告诉你");//自定义数据 return errorAttributes;
}
} //2-自定义Exception
public class DataException extends RuntimeException { public DataException() {
super("数据不存在!");
}
} //3-自定义handleException方法
@ControllerAdvice
public class MyExceptionHandler { @ExceptionHandler(DataException.class)
public String handleException(Exception e, HttpServletRequest request){
//传入我们自己的错误状态码 4xx 5xx,否则就不会进入定制错误页面的解析流程
request.setAttribute("javax.servlet.error.status_code",500);//这里只接受500状态错误
Map<String,Object> map = new HashMap<String,Object>();
map.put("code","data error");
map.put("msg",e.getMessage());
request.setAttribute("extra", map);//放在request中的数据,在前端页面中都可以取出来
return "forward:/error";//并不直接返回视图名称或json数据,请求转发到"/error",让Springboo按流程处理处理,从而达到自适应浏览器请求和客户端请求; }
} //4-测试接口
@Controller
public class DemoController { @GetMapping(value="test")
public String toExceptionPage( ){
throw new DataException();//主动抛出一个500错误,用于测试
}
}
//templates/error/5XX.html

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h1>自定义页面 --路径:templates/error/5XX.html页面 --优先级别:2</h1>
<h1>status:[[${status}]]</h1>
<h2>timestamp:[[${timestamp}]]</h2>
<h2>exception:[[${exception}]]</h2>
<h2>myName:[[${myName}]]</h2>
<h2>myAge:[[${myAge}]]</h2>
<h2>extra-code:[[${extra.code}]]</h2>
<h2>extra-msg:[[${extra.msg}]]</h2>
</body>
</html>

4-2-demo示例

Springboot学习05-自定义错误页面完整分析的更多相关文章

  1. Springboot学习04-默认错误页面加载机制源码分析

    Springboot学习04-默认错误页面加载机制源码分析 前沿 希望通过本文的学习,对错误页面的加载机制有这更神的理解 正文 1-Springboot错误页面展示 2-Springboot默认错误处 ...

  2. Springboot异常处理和自定义错误页面

    1.异常来源 要处理程序发生的异常,首先需要知道异常来自哪里? 1.前端错误的的请求路径,会使得程序发生4xx错误,最常见的就是404,Springboot默认当发生这种错误的请求路径,pc端响应的页 ...

  3. java web 自定义错误页面 完整jsp错误页面代码(同时写错误日志) error.jsp

    1.首先配置web.xml  添加一下代码 <error-page> <error-code>500</error-code> <location>/e ...

  4. SpringBoot自定义错误页面,SpringBoot 404、500错误提示页面

    SpringBoot自定义错误页面,SpringBoot 404.500错误提示页面 SpringBoot 4xx.html.5xx.html错误提示页面 ====================== ...

  5. springboot自定义错误页面

    springboot自定义错误页面 1.加入配置: @Bean public EmbeddedServletContainerCustomizer containerCustomizer() { re ...

  6. Springboot - 自定义错误页面

    Springboot 没找到页面或内部错误时,会访问默认错误页面.这节我们来自定义错误页面. 自定义错误页面 1.在resources 目录下面再建一个 resources 文件夹,里面建一个 err ...

  7. ASP.NET全局错误处理和异常日志记录以及IIS配置自定义错误页面

    应用场景和使用目的 很多时候,我们在访问页面的时候,由于程序异常.系统崩溃会导致出现黄页.在通常的情况下,黄页对于我们来说,帮助是极大的,因为它可以帮助我们知道问题根源,甚至是哪一行代码出现了错误.但 ...

  8. Spring Boot自定义错误页面,Whitelabel Error Page处理方式

    我已经是Spring Framework框架的忠实粉丝.对于企业软件开发者来说它提供了对常见问题的通用解决方案,包括那些你在未来开发中没有意识到的问题.但是,它构建的J2EE项目变得比较臃肿,需要被一 ...

  9. ASP.NET自定义错误页面

    ASP.NET自定义错误页面 ASP.NET 提供三种用于在出现错误时捕获和响应错误的主要方法:Page_Error 事件.Application_Error 事件以及应用程序配置文件 (Web.co ...

随机推荐

  1. PythonStudy——字符串扩展方法 String extension method

    ')) ')) print('***000123123***'.lstrip('*')) print('***000123123***'.rstrip('*')) print('华丽分割线'.cent ...

  2. Linux-入门配置jdk,tomcat,mysql

    Mysql安装 大家可以在这里下 http://mirrors.163.com/mysql/Downloads/MySQL-5.7/ 1)查看CentOS自带的mysql rpm -qa | grep ...

  3. cookie和session的关联关系

  4. C语言strcmp()实现

    函数原型:    extern int strcmp(const char *s1,const char *s2); 比较两个字符串 设这两个字符串为str1,str2, 若str1=str2,则返回 ...

  5. centos7 设置时区和时间

    1.设置时区(同步时间前先设置) timedatectl set-timezone Asia/Shanghai 2.安装组件 yum -y install ntp systemctl enable n ...

  6. powershell中设置变量并启动Tomcat

    假设tomcat安装在 C:\GreenSoftware\apache-tomcat-9.0.14 目录. 使用powershell进入到此目录.执行命令 $Env:JAVA_HOME="C ...

  7. windows copy 和xcopy

    #将文件夹下文件拷贝到指定目录 将d盘下1文件夹内所有内容拷贝到测试目录下copy d:\1\ Z:\chenkai\测试目录\ /yxcopy D:\soft\svn工具 Z:\chenkai\测试 ...

  8. hash的排序(转载)

    sort函数 sort LISTsort BLOCK LISTsort SUBNAME LIST sort 的用法有如上3种形式.它对LIST进行排序,并返回排序后的列表.假如忽略了SUBNAME或B ...

  9. BottomNavigationView 使用

    <?xml version="1.0" encoding="utf-8"?> <android.support.constraint.Cons ...

  10. LTE学习笔记(一)——背景知识

    一.标准化组织 无线通信技术的演进离不开一些标准化组织. 1.ITU(International Telecommunication Union) 国际电信联盟,主要任务是制定标准,分配无线频谱资源, ...