SpringBoot是Spring全家桶的成员之一,是一种整合Spring技术栈的方式(或者说是框架),同时也是简化Spring的一种快速开发的脚手架
1.相关介绍
当发生异常时, 跳转到我们自定义的异常处理页面.
SpringBoot中只需在静态资源目录下创建一个error文件夹, 并把异常处理页面放入其中, 页面的命名与异常错误代码对应, 如404.html, 500.html.
5xx.html可以对应所有错误代码为5开头的错误
默认静态资源目录为类路径(resources)下的:
- /static
- /public
- /resources
- /META-INF/resources
2.代码实现
HelloController
package com.limi.springboottest2.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.ResponseBody;
@Controller
public class HelloController {
@ResponseBody
@GetMapping("/test1")
public String test1(){
int i = 10/0; //模拟500异常
return "ok";
}
}
404.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h1>这是自定义404</h1>
</body>
</html>
5xx.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h1>这是自定义5xx</h1>
</body>
</html>
3.运行测试
测试404
测试500
使用postman测试
{
"timestamp": "2022-06-22T04:12:13.740+00:00",
"status": 500,
"error": "Internal Server Error",
"trace": "java.lang.ArithmeticException: / by zero\r\n\tat com.limi.springboottest2.controller.HelloController.test1(HelloController.java:14),
"message": "/ by zero",
"path": "/test1"
}
返回的信息我们可以使用模板引擎(如thymeleaf)获取并写入自定义的异常处理页面中
到此这篇关于SpringBoot详解实现自定义异常处理页面方法的文章就介绍到这了,更多相关SpringBoot异常处理内容请搜索编程学习网以前的文章希望大家以后多多支持编程学习网!
本文标题为:SpringBoot详解实现自定义异常处理页面方法
基础教程推荐
- JDK数组阻塞队列源码深入分析总结 2023-04-18
- java实现多人聊天系统 2023-05-19
- springboot自定义starter方法及注解实例 2023-03-31
- ConditionalOnProperty配置swagger不生效问题及解决 2023-01-02
- Java文件管理操作的知识点整理 2023-05-19
- Java实现线程插队的示例代码 2022-09-03
- java基础知识之FileInputStream流的使用 2023-08-11
- Java数据结构之对象比较详解 2023-03-07
- Java实现查找文件和替换文件内容 2023-04-06
- Java并发编程进阶之线程控制篇 2023-03-07