この記事では主に Spring Boot のグローバル例外処理の関連情報を詳しく紹介します。興味のある方は参考にしてください。
この記事は参考のために 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、バックグラウンド処理ハンドラーを作成します
d、バックグラウンド例外印刷
-------------デフォルトエラー
2017-06-16 14:54:05.314 WARN 6892 --- [nio-8080 -exec-1 ] .m.m.a.ExceptionHandlerExceptionResolver: ハンドラーの実行によって発生した解決された例外: org.springframework.dao.IncorrectResultSizeDataAccessException: 結果は複数の要素を返します; ネストされた例外は javax.persistence.NonUniqueResultException: 結果は複数の要素を返します
2. ページ処理例外
a、HTML テンプレート ページの作成
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"); } }
b、ハンドラーの変更
<!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> <h1 th:inlines="text">异常出现啦</h1> ${messages} </body> </html>
c、ページのアクセス結果
以上がSpring Boo のグローバル例外処理方法の紹介の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。