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. 【java多线程】队列系统之PriorityBlockingQueue源码

    一.二叉堆 如题,二叉堆是一种基础数据结构 事实上支持的操作也是挺有限的(相对于其他数据结构而言),也就插入,查询,删除这一类 对了这篇文章中讲到的堆都是二叉堆,而不是斜堆,左偏树,斐波那契堆什么的  ...

  2. 第一章 C#入门 (Windows窗体应用程序)(一)

    我的第一个窗体应用程序(一) [案例说明]  在文本框中显示一行文字“Hello C#!”,单击[显示]按钮后在文本框中显示文字:单击[清除]按钮后清除文本框中的内容. [案例实现步骤] 1.新建项目 ...

  3. sed用法说明

    sed介绍 sed:stream editor 是一个行编辑器,或叫流编辑器,每次处理一行,处理完一行再处理下一行.sed并不直接处理源文件,而是读取一行后放入模式空间(patten space)里, ...

  4. Intellij中部署Tomcat(详细版本-介绍了部署完之后的详细路径)

    https://blog.csdn.net/HughGilbert/article/details/56424137 要点如下: 1. CATALINA_HOME即Tomcat的安装目录 2. CAT ...

  5. babelrc 中的 presets 字段(env, react)和 plugins 字段(dynamic-import-webpack, transform-object-rest-spread, ...)

    一.presets 字段 目前用到 presets: [ 'env', 'react'   // react 转码规则 ]: 只有 env 时,作用和 latest 相同,包括 es5.es6.es7 ...

  6. Excel函数之vlookup的用法

    Vlookup函数用法: 实例: 要将编号对照表中的图书名称根据两表中的图书编码字段引入 订单明细中. Vlookup函数 参数一:键入一个需要搜索的字段,这里需要通过订单明细中的图书编号在编号对照离 ...

  7. c++11 tuple实现

    实现一个简易版的c++11 tuple. 我使用的编译器是gcc,codeblocks13.12自带的,哪个版本我不熟gcc也没去查. 大致看了下他家的tuple实现,多继承,tuple之上还有2个辅 ...

  8. Tag (input) should be an empty-element tag.

    因为:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.o ...

  9. python:数据类型list

    一.列表list list是python中基础的数据类型之一,它是以[ ]括起来,每个元素以逗号隔开,而且他里面可以存放各种数据类型 li = ['alex', 123, True, (1, 2, 3 ...

  10. 使用RecyclerView实现聊天界面

    原文地址:https://blog.csdn.net/wang_wy/article/details/79032698