In Intellij IDEA with activation spring-boot-devtoolsin the maven configuration, I can easily update static web components, and updates to javascript or html code are easily reflected in the running application.
The downside is that my Java classes will be reloaded too. I want to avoid this because I have heavy classes with load times of up to two minutes.
How can I configure spring-boot-devtools, for example, static web components to reboot, but the server is not completely rebooted (so that my Java member variables remain intact)?
source
share