この記事は主に Spring Boot グローバル 例外処理 の関連情報を詳しく紹介します。興味のある方は参考にしてください。ご参考までに、この記事では Spring Boot グローバル例外処理を共有します。内容は以下のとおりです
1. バックグラウンド処理例外a、thymeleaf 依存関係を導入します
<!-- thymeleaf模板插件 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency>
b、application.properties ファイルに
properties を設定します#关闭thymeleaf模板的缓存
spring.thymeleaf.cache=false
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 、Background例外印刷
-------------デフォルトエラー2017-06-16 14:54:05.314 WARN 6892 --- [nio-8080-exec-1] 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> <h1 th:inlines="text">异常出现啦</h1> ${messages} </body> </html>
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、ページアクセス結果
以上がJavaでのSpring Bootグローバル例外処理例の詳細な説明の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。