亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

Spring Boot全局異常處理解析

發布時間:2020-09-29 02:46:35 來源:腳本之家 閱讀:274 作者:Miss_wang 欄目:編程語言

本文為大家分享了Spring Boot全局異常處理,供大家參考,具體內容如下

1、后臺處理異常

a、引入thymeleaf依賴

<!-- thymeleaf模板插件 -->
<dependency>
 <groupId>org.springframework.boot</groupId>
 <artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>

b、在application.properties文件中設置屬性

#關閉thymeleaf模板的緩存
spring.thymeleaf.cache=false 

c、編寫后臺處理Handler  

import org.springframework.web.bind.annotation.ControllerAdvice;
import org.springframework.web.bind.annotation.ExceptionHandler;

@ControllerAdvice
public class GlobalExceptionHandler {

  //設置此handler處理所有異常
 @ExceptionHandler(value=Exception.class)
 public void defaultErrorHandler(){
 System.out.println("-------------default error");
 }
}


d、后臺異常打印

-------------default error
2017-06-16 14:54:05.314  WARN 6892 --- [nio-8080-exec-1] .m.m.a.ExceptionHandlerExceptionResolver : Resolved exception caused by Handler execution: org.springframework.dao.IncorrectResultSizeDataAccessException: result returns more than one elements; nested exception is javax.persistence.NonUniqueResultException: result returns more than one elements

2、頁面處理異常

a、編寫html模板頁面 

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" 
  xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity3">
<head>
<meta charset="UTF-8" />
<title>Insert title here</title>
</head>
<body>
 <h2 th:inlines="text">異常出現啦</h2>
 ${messages}
</body>
</html>

b、修改Handler

import org.springframework.web.bind.annotation.ControllerAdvice;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.ResponseBody;

@ControllerAdvice
public class GlobalExceptionHandler {

 @ExceptionHandler(value=Exception.class)
 @ResponseBody
 public String defaultErrorHandler(){
  System.out.println("-------------default error");
  return "系統錯誤,請聯系管理員";
 }
}

c、頁面訪問結果

Spring Boot全局異常處理解析

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

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

AI

桓仁| 太保市| 龙江县| 通辽市| 报价| 财经| 新营市| 兴义市| 株洲市| 宁武县| 扶风县| 宜州市| 金秀| 宜春市| 瑞昌市| 子洲县| 大厂| 类乌齐县| 巨野县| 南漳县| 湘潭市| 上栗县| 安徽省| 武陟县| 嘉鱼县| 禄劝| 德昌县| 定边县| 内黄县| 巴林左旗| 武清区| 岐山县| 青州市| 井陉县| 安化县| 疏附县| 仙游县| 澄迈县| 乳山市| 黄骅市| 汤原县|