I have a project that will run fine with mvn spring-boot:run
, and I would like the ability to hot swap automatically after compiling. I setup the dependency as follows:
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>1.2.5.RELEASE</version>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>springloaded</artifactId>
<version>1.2.4.RELEASE</version>
</dependency>
</dependencies>
</plugin>
However, I'm not seeing changes in response to a recompile. Is something more needed?