Allow auto-make to start even if developed application is currently running
-
인텔리제이에 spring-boot-devtools 추가하기Spring Boot 2021. 12. 11. 01:58
인텔리제이에 spring-boot-devtools 추가하기 안녕하세요? 장장스입니다. intellij에서 spring-boot-devtools를 추가하는 방법입니다. spring-boot-devtools STEP_1 build.gradle 파일에 spring-boot-devtools 의존성을 추가합니다. runtimeOnly('org.springframework.boot:spring-boot-devtools') dependencies { implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' implementation 'org.springframework.boot:spring-boot-starter-web' testImplement..