SpringBoot: 11.异常处理方式1(自定义异常页面)(转)

Posted 咫尺天涯是路人丶

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot: 11.异常处理方式1(自定义异常页面)(转)相关的知识,希望对你有一定的参考价值。

 

SpringBoot 默认的处理异常的机制:SpringBoot 默认的已经提供了一套处理异常的机制。一旦程序中出现了异常 SpringBoot 会向/error 的 url 发送请求。在 springBoot 中提供了一个叫 BasicExceptionController 来处理/error 请求,然后跳转到默认显示异常的页面来展示异常信息。

如 果 我 们 需 要 将 所 有 的 异 常 同 一 跳 转 到 自 定 义 的 错 误 页 面 , 需 要 在src/main/resources/templates 目录下创建 error.html 页面。注意:名称必须叫 error

自定义错误页面

复制代码
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>自定义错误页面</title>
</head>
<body>
    页面出错了。。。请与管理员联系
    <span th:text="${message}"></span>  <!--发生错误的信息-->
    <span th:text="${error}"></span>
</body>
</html>
复制代码

编写controller

复制代码
package com.bjsxt.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

/**
 * Created by Administrator on 2019/2/12.
 */
@Controller
public class IndexController {


    @RequestMapping("toIndex")
    public String toIndex(){
        String str=null;
        str.length();
        return "index";
    }

    @RequestMapping("toIndex2")
    public String toIndex2(){
        int num=10/0;
        return "index";
    }

}
复制代码

以上是关于SpringBoot: 11.异常处理方式1(自定义异常页面)(转)的主要内容,如果未能解决你的问题,请参考以下文章

springboot 五种异常处理方式

SpringBoot学习14:springboot异常处理方式4(使用SimpleMappingExceptionResolver处理异常)

12.springboot中常用的异常处理方式

SpringBoot系列: Spring支持的异常处理方式

SpringBoot学习13:springboot异常处理方式3(使用@ControllerAdvice+@ExceptionHandle注解)

SpringBoot项目如何做到统一异常处理