Spring boot에서 resources 디렉토리를 수정한 후 그것을 확인하기 위해서는 WAS(Tomcat 등)를 재시작 해야 합니다. 수정 할 때마다 재시작 하는 것은 매우 귀찮은 일입니다. 설정 방법 Intellij에서 바로 반영되게 하는 방법은 다음과 같습니다. 1. build.gradle에 의존성 추가 dependencies { ... compile('org.springframework.boot:spring-boot-devtools') } 2. application 설정파일 수정(yml / properties) 다음은 application.yml의 thymeleaf 사용 예시입니다. spring: devtools: livereload: enabled: true thymeleaf: cache: f..