[Kotlin] Spring DevTools에서 핫 배포 설정
2749 단어 spring-bootKotlingradle
개요
1. SPRING INITIALIZR에서 Devtools Dependency 추가
2. 자동 빌드 설정 사용
여기에서 IntelliJ에서 작업합니다.
3. build.gradle 설정
build.gradle
apply plugin: 'idea'
idea {
module {
inheritOutputDirs = false
outputDir = file("$buildDir/classes/kotlin/main")
}
}
이상의 설정을 하면 파일이 갱신되었을 때에 자동적으로 변경이 반영되게 됩니다.
참고문헌
Spring Boot (Kotlin) 시작하기
Spring Boot — Hot Swapping a Gradle project in IntelliJ with Kotlin support
Reference
이 문제에 관하여([Kotlin] Spring DevTools에서 핫 배포 설정), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/penguin0507/items/529c85faafbba8be568c텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)