0

I have a SpringBoot application with web enabled, so i have my html pages files on /src/main/resources/static.

But i have to restart the application everytime in order to see the changes i make on any file on that path and that's a waste of time, does anybody knows a "fix" to this problem?

Thanks..!

  • For IDE i'm using MyEclipse – Alonso del Villar Oct 12 '16 at 21:44
  • If you are using the default Thymeleaf templating engine, turn off template caching by adding `spring.thymeleaf.cache=false` to `application.properties` (by default template caching is on). If using another templating engine, set the corresponding property to `false`. – manish Oct 13 '16 at 10:03

1 Answers1

2

Which IDE are you using? In IntelliJ there's an option to "update resources" without needing an app server restart. Look at this SO questions for more details

Michele Ricciardi
  • 2,107
  • 14
  • 17