spring boot devtools 기능 및 적용
1. 기능 : 코드 변경후 재시작없이 확인
2. 적용방법 : spring boot 버전에 맞게 적용
dependencies {
..
implementation 'org.springframework.boot:spring-boot-devtools:2.2.13.RELEASE'
...
}
참조 : https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-devtools
'java > Spring Boot' 카테고리의 다른 글
| [build.gradle] dev/prod 분리 (0) | 2023.11.16 |
|---|---|
| [application.properties]default,dev,prod Profile 설정 (0) | 2023.11.16 |
| Gradle 의존성 제거 : build.gradle (0) | 2023.09.26 |
| [application.properties] jsp 파일 수정후 바로 갱신 설정하기 (0) | 2023.09.25 |
| @Value (0) | 2023.08.14 |