ねこじゃすり
猫を魅了する魔法の装備品!
【最新機種】GoPro hero11 Black
最新機種でVlogの思い出を撮影しよう!
[ノースフェイス] THE NORTH FACE メンズ アウター マウンテンライトジャケット
防水暴風で耐久性抜群なので旅行で大活躍です!
ペヤング ソースやきそば 120g×18個
とりあえず保存食として買っておけば間違いなし!
レッドブル エナジードリンク 250ml×24本
翼を授けよう!
BANDAI SPIRITS ULTIMAGEAR 遊戯王 千年パズル 1/1スケール
もう一人の僕を呼び覚ませ!!
MOFT X 【新型 ミニマム版】 iPhone対応 スマホスタンド
Amazon一番人気のスマホスタンド!カード類も収納出来てかさ張らないのでオススメです!
スポンサーリンク
EclipseにおけるSpringBootデバック時の謎のエラー
Eclipse環境でSpringBootのシステムを開発している場合、もちろんデバッグを行うと思うのですが、SilentExitException という、謎のエラーが発生すると思います。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 |
/* * Copyright 2012-2017 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.springframework.boot.devtools.restart; import java.lang.Thread.UncaughtExceptionHandler; import java.util.Arrays; /** * {@link UncaughtExceptionHandler} decorator that allows a thread to exit silently. * * @author Phillip Webb * @author Andy Wilkinson */ class SilentExitExceptionHandler implements UncaughtExceptionHandler { private final UncaughtExceptionHandler delegate; SilentExitExceptionHandler(UncaughtExceptionHandler delegate) { this.delegate = delegate; } @Override public void uncaughtException(Thread thread, Throwable exception) { if (exception instanceof SilentExitException) { if (isJvmExiting(thread)) { preventNonZeroExitCode(); } return; } if (this.delegate != null) { this.delegate.uncaughtException(thread, exception); } } private boolean isJvmExiting(Thread exceptionThread) { for (Thread thread : getAllThreads()) { if (thread != exceptionThread && thread.isAlive() && !thread.isDaemon()) { return false; } } return true; } protected Thread[] getAllThreads() { ThreadGroup rootThreadGroup = getRootThreadGroup(); Thread[] threads = new Thread[32]; int count = rootThreadGroup.enumerate(threads); while (count == threads.length) { threads = new Thread[threads.length * 2]; count = rootThreadGroup.enumerate(threads); } return Arrays.copyOf(threads, count); } private ThreadGroup getRootThreadGroup() { ThreadGroup candidate = Thread.currentThread().getThreadGroup(); while (candidate.getParent() != null) { candidate = candidate.getParent(); } return candidate; } protected void preventNonZeroExitCode() { System.exit(0); } public static void setup(Thread thread) { UncaughtExceptionHandler handler = thread.getUncaughtExceptionHandler(); if (!(handler instanceof SilentExitExceptionHandler)) { handler = new SilentExitExceptionHandler(handler); thread.setUncaughtExceptionHandler(handler); } } public static void exitCurrentThread() { throw new SilentExitException(); // ここでエラーが発生 } private static class SilentExitException extends RuntimeException { } } |
ブレークポイントを貼っているわけでもないのに、毎回デバッグ起動時に引っかかるので、正直とても厄介ですorz
実はこれ、spring-boot-devtools
のバグのようです><
This is unfortunately a know issue with the new spring-boot-devtools module (see https://github.com/spring-projects/spring-boot/issues/3100). We use this trick to kill the main thread so that we can replace it with a re-loadable version. So far I’ve not found a way to prevent the debug breakpoint from triggering.
For now, you can toggle the “suspend execution on uncaught exceptions” checkbox in Java -> Debug preferences to prevent it from happening.java – Breakpoint at “throw new SilentExitException()” in Eclipse + Spring Boot – Stack Overflow
しかし安心してください。
Eclipseの設定を変えるだけでエラーが発生する事無くなるので、今回はその手順をご紹介致します。
手順
Eclipseの設定変更
手順は簡単です。
Eclipseの設定からJava>Debugを選択すると、Suspend execution on uncaught exceptionsにチェックが入っていると思います。
このチェックを外すだけでデバッグ起動時のエラーで引っかかる事がなくなります♪
終わりに
以上のように、EclipseでSpringBoot開発をやる際には必ずやっておいたほうが良い設定です。
小さな時間ロスも積み重なると作業時間を大量に無駄にしてしまうので、皆さんも早めに設定をしておくと良いでしょう♪