3

Just started a spring boot application using spring initializer with spring-dev-tools and then imported into Intellij 14.1.4 CE. I can run the application fine with gradle bootRun but cannot get hot reload working. I follow the intro over here Spring Dev Tools. Anything am missing?

zulqarnain
  • 1,695
  • 1
  • 16
  • 33
  • 1
    IntelliJ 15 -> https://youtrack.jetbrains.com/issue/IDEA-141638. Also you should just run the main class not run it from within Gradle that won't work I guess. – M. Deinum Jun 26 '15 at 11:48
  • I've tried running with the main class only but still no luck. Also I cannot find registry key referred in the link. – zulqarnain Jun 26 '15 at 12:21
  • As stated you need IntelliJ 15 not 14.1.x... – M. Deinum Jun 26 '15 at 12:23

1 Answers1

0

You should give a try to Spring Loaded : Reference Guide - 72. Hot swapping (or GitHub project)

hubesco
  • 21
  • 3
  • That's older project that will be deprecated in favor of devtools. Basically, Pivotal thinks it's too brittle and too time consuming. – Ivan Nikitin Aug 17 '15 at 18:37