【Spring Boot Devtools】 debug 할 때 SilentExitException에서 멈출 때의 해결 방법

현상



spring-boot-devtools를 넣고 debug 모드에서 Application을 시작하면,
반드시 SilentExitExceptionde로 멈춰 버립니다.
물론 브레이크 포인트는 설정하지 않습니다 ....


※원인은 bev-tool 버그

그건 그렇고, Spring Boot Devtools 란 무엇입니까?



클래스 패스의 자원중에서 변경이 있을 때에 자동 재시작해 줍니다.
build.gradle에 이하의 기술, 재로드를 하면 OK!

build.gradle
dependencies {
    compile("org.springframework.boot:spring-boot-devtools")
}

SilentExitException 해결 방법



eclipse[환경설정]->[java]->[debug]
suspend execution on uncaught exceptions
의 체크를 해제한다.


상기의 대응에 의해 SilentExitException로 debug가 멈추는 것은 없어져,
깨끗이했습니다!

좋은 웹페이지 즐겨찾기