My spring boot microservice uses spring-boot-starter-web and I'm trying to enable hot swapping in intellij. I tried adding the this dependency:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
</dependency>
and then in Intellij I:
checked "Build project automatically" in compiler settings AND checked the compiler.automake.allow.when.app.running box AND restarted Intellij
I ran my microservice, then changed a controller file, and nothing happened...any ideas? Is it b/c I'm using spring-boot-starter-web and consequently embedded Tomcat?
Thanks!