码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2019-02-24 18:50:32      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:联系   source   log   frame   www.   ack   set   ring   nis   

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(自定义异常页面)(转)

标签:联系   source   log   frame   www.   ack   set   ring   nis   

原文地址:https://www.cnblogs.com/kuangzhisen/p/10427170.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!