현상
Spring boot 실행시 아래와 같은 Warning이 발생하여 원인을 찾아보았더니, 원인은 스프링 부트 응용 프로그램을 동시 실행하고 있을때 주는 경고였다.
2017-08-14 12:23:23.609 WARN 2356 --- [ restartedMain] o.s.b.d.a.OptionalLiveReloadServer : Unable to start LiveReload server
해결방법
어플리케이션 하는 동안 서로 영향을 주지 않게 하려면 config 파일(yaml)에 옵션을 추가해주면 된다.
spring.devtools.livereload.enabled: false
아래는 관련 내용의 SpringBoot Reference이다.
'Programming > Springboot' 카테고리의 다른 글
[springboot][intelliJ] JPA Cannot resolve table ' ' (0) | 2020.06.25 |
---|---|
[spring] @value null (0) | 2020.03.26 |
[Spring] @DateTimeFormat - TimeZone (0) | 2019.04.17 |