spring-boot-devtools 는 개발용 기능을 가지고 있다.
live 혹은 production 환경에서 구동을 안하는 것을 권장하고 있다.
Maven의 경우 optional을 true로 하면 된다.
하지만 Gradle은 optional이 없다.
이전에 설정을 보니 아래와 같이 되어 있었다.
runtime "org.springframework.boot:spring-boot-devtools"
하지만 제대로 동작을 하지 않는 것 같았고,
찾아보니 해당 이슈에 대한 Github에 이슈가 있었다.
Devtools documentation incorrectly uses compileOnly Gradle scope #14451
현재는 레퍼런스 문서도 수정되어 있다.
https://docs.spring.io/spring-boot/docs/current/reference/html/using-boot-devtools.html
'Programing > Framework' 카테고리의 다른 글
[SpringBoot] HikariCP의 leakDetectionThreshold 기본값은? (0) | 2019.03.28 |
---|---|
[SpringFramework] StopWatch (Spring vs Apache) (0) | 2019.03.19 |
[Spring Framework] Java와 Groovy 문법 삽질기 (0) | 2019.03.07 |
[Spock] Internal of spock (Specification) (0) | 2019.02.07 |
[SpringBoot] Exception Handler에서 ResponseStatus에 reason를 적으면... (0) | 2018.11.30 |