JavaでのSpring Bootグローバル例外処理例の詳細な説明

怪我咯
リリース: 2017-06-30 10:55:53
オリジナル
2446 人が閲覧しました

この記事は主に 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 を設定します

c、バックグラウンド処理ハンドラーを作成します

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>
ログイン後にコピー

b、ハンドラーの変更

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 サイトの他の関連記事を参照してください。

関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!