<dependency>
<groupId>ru.vyukov</groupId>
<artifactId>another-live-refresh-spring-boot-starter</artifactId>
<version>0.3.1</version>
<optional>true</optional>
</dependency>
and disable in production profile
logging:
level:
ru.vyukov.anotherliverefresh: DEBUG
spring:
thymeleaf:
cache: false
#liverefresh:
# enable: true is default
---
#production profile
spring:
profiles: production
thymeleaf:
cache: true
liverefresh:
enable: false
ENGLISH
RUSSIAN
Этот проект вдохновлен livereload.com, однако в отличии от него встраивается в приложение в виде maven зависимости. Преимущество перед реализацией из Spring Developer Tools, заключается в отсутствии привязки к соединению на определенный порт, что позволяет использовать продукт одновременно в нескольких приложениях.Так же не требуется утановка расширений в браузере.