I'm using Spring Boot 2.0.4.RELEASE with embedded Tomcat server and Intellij Idea 2018.2 on my Os X High Sierra.
As tutorial says
https://docs.spring.io/spring-boot/docs/current/reference/html/using-boot-devtools.html
I added in my pom.xml following dependency
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
And after that I see
[ restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
wher server starts.
But anyway changes in static sources has no effect, and I have to press Cmd+F9 to see that in the browser.
I tried all tips from IntelliJ 15, SpringBoot devtools livereload not working
like turning on 'Build project programmatically' or 'compiler.automake.allow.when.app.running', but nothing helps.
My static sources (angularjs templates an files) living at
src > main > resources > static > templates
may be location for static is wrong?
Any ideas appreciated!