728x90
./gradlew bootRun 으로 실행시 아래와 같은 오류 발생할 수 있다.
FAILURE: Build failed with an exception.
* What went wrong:
Gradle build daemon disappeared unexpectedly (it may have been killed or may have crashed)
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
해결 방법
application.properties 에 org.gradle.daemon=false 추가하고
./gradlew bootRun --no-daemon으로 실행
728x90
'Spring Boot' 카테고리의 다른 글
[Spring Boot] Entity의 주요 어노테이션 (0) | 2020.07.04 |
---|---|
[Spring Boot] HTTP 통신 방식 과 REST의 개념 (0) | 2020.07.04 |
[Spring Boot] 예외를 따로 처리하는 @ControllerAdvice (0) | 2020.06.30 |
[SpringBoot] Lombok ToString 특정 필드 출력 안하는 법 (0) | 2020.06.17 |
[Spring Boot] Spring initializr로 스프링 부트 시작하기 (0) | 2020.06.15 |