Spring Boot Application Live Reload (Hot Swap) With Intellij IDEA
Check out this quick code snippet to get hot swapping up and running for your Spring Boot app. Tired of having to exit out and restart after every change? No more.
Join the DZone community and get the full member experience.
Join For FreeWhile developing Spring Boot Applications using Intellij IDEA, it was so annoying to restart the Spring Boot app after each and every change. Spring Boot provides live reload (hot swap) of application out of the box using the following dependency.
<dependency>
<groupid>org.springframework.boot</groupid>
<artifactid>spring-boot-devtools</artifactid>
</dependency>
But it didn't live reload the application/container, and the hot deployment didn't work for changes. Further researching found that following changes needed to be done in order the hot deployment to be worked correctly.
1. Open the Settings --> Build-Execution-Deployment --> Compiler
and enable the Make Project Automatically.
2. Then press ctrl+shift+A and search for the registry. In the registry, make the following configuration enabled.
compiler.automake.allow.when.app.running
3. Restart the IDE.
That's it! Now the hot deployment works, and you don't have to restart manually after each and every change.
Published at DZone with permission of Aruna Karunarathna, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments