91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

SpringBoot2.0 基礎案例(03):配置系統全局異常映射處理

發布時間:2020-08-02 18:27:38 來源:網絡 閱讀:355 作者:知了一笑 欄目:編程語言

一、異常分類

這里的異常分類從系統處理異常的角度看,主要分類兩類:業務異常和系統異常。

1、業務異常

業務異常主要是一些可預見性異常,處理業務異常,用來提示用戶的操作,提高系統的可操作性。
常見的業務異常提示:
1)請輸入xxx
2)xxx不能為空
3)xxx重復,請更換

2、系統異常

系統異常主要是一些不可預見性異常,處理系統異常,可以讓展示出一個友好的用戶界面,不易給用戶造成反感。如果是一個金融類系統,在用戶界面出現一個系統異常的崩潰界面,很有可能直接導致用戶流失。
常見的系統異常提示:
1)頁面丟失404
2)服務器異常500

二、解決應用啟動后404界面

SpringBoot2.0 基礎案例(03):配置系統全局異常映射處理

1、引入頁面Jar包

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>

2、自定義首頁接口

import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class IndexController {
    @RequestMapping("/")
    public String index(ModelMap modelMap) {
        modelMap.addAttribute("name","知了一笑") ;
        return "index";
    }
}

3、首頁界面

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8" />
    <title></title>
</head>
<body>
<h2 th:text="${name}"></h2>
</body>
</html>

4、運行效果

SpringBoot2.0 基礎案例(03):配置系統全局異常映射處理

三、SpringBoot2.0中異常處理

1、項目結構圖

SpringBoot2.0 基礎案例(03):配置系統全局異常映射處理

2、自定義業務異常類

public class ServiceException extends Exception {
    public ServiceException (String msg){
        super(msg);
    }
}

3、自定義異常描述對象

public class ReturnException {
    // 響應碼
    private Integer code;
    // 異常描述
    private String msg;
    // 請求的Url
    private String url;
    // 省略 get set 方法
}

4、統一異常處理格式

1)兩個基礎注解
@ControllerAdvice 定義統一的異常處理類
@ExceptionHandler 定義異常類型對應的處理方式
2)代碼實現

import org.springframework.web.bind.annotation.ControllerAdvice;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.servlet.ModelAndView;
import javax.servlet.http.HttpServletRequest;
@ControllerAdvice
// 異常以Json格式返回 等同 ExceptionHandler + ResponseBody 注解
// @RestControllerAdvice
public class HandlerException {
    /**
     * 自定義業務異常映射,返回JSON格式提示
     */
    @ExceptionHandler(value = ServiceException.class)
    @ResponseBody
    public ReturnException handler01 (HttpServletRequest request,ServiceException e){
        ReturnException returnException = new ReturnException() ;
        returnException.setCode(600);
        returnException.setMsg(e.getMessage());
        returnException.setUrl(String.valueOf(request.getRequestURL()));
        return returnException ;
    }
    /**
     * 服務異常
     */
    @ExceptionHandler(value = Exception.class)
    public ModelAndView handler02 (HttpServletRequest request,Exception e){
        ModelAndView modelAndView = new ModelAndView() ;
        modelAndView.addObject("ExeMsg", e.getMessage());
        modelAndView.addObject("ReqUrl", request.getRequestURL());
        modelAndView.setViewName("/exemsg");
        return modelAndView ;
    }
}

5、簡單的測試接口

@Controller
public class ExeController {
    /**
     *  {
     *    "code": 600,
     *    "msg": "業務異常:ID 不能為空",
     *    "url": "http://localhost:8003/exception01"
     *  }
     */
    @RequestMapping("/exception01")
    public String exception01 () throws ServiceException {
        throw new ServiceException("業務異常:ID 不能為空");
    }

    @RequestMapping("/exception02")
    public String exception02 () throws Exception {
        throw new Exception("出現異常,全體臥倒");
    }
}

SpringBoot2.0 基礎案例(03):配置系統全局異常映射處理

四、源代碼地址

GitHub地址:知了一笑
https://github.com/cicadasmile
碼云地址:知了一笑
https://gitee.com/cicadasmile

SpringBoot2.0 基礎案例(03):配置系統全局異常映射處理

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

精河县| 白银市| 宁德市| 仙桃市| 舟曲县| 荃湾区| 房山区| 红桥区| 赫章县| 甘孜县| 九龙坡区| 定州市| 苍溪县| 安泽县| 遵义县| 微山县| 华坪县| 喀喇沁旗| 揭东县| 新和县| 无棣县| 靖西县| 永平县| 建水县| 聂拉木县| 商洛市| 宣化县| 武川县| 陇南市| 图木舒克市| 育儿| 花莲市| 小金县| 彭泽县| 金山区| 天津市| 宝兴县| 宁安市| 阿勒泰市| 庆云县| 白水县|