In Java web applications, you often have to change code in .java files. In order for the changes to take effect, I have (in Intellij IDEA) either to restart the server or to restart it. And sometimes it takes a lot of time, considering that changes have to be done a lot and often. If I select the option (when I start the application from the idea) update classes and resources, then the changes do not take effect.

Tell me, how can I accelerate this process?

  • Try spring loaded - rvit34
  • Thank! But I already found a simpler way for the idea: 1) the artifact should be exploded 2) the application should be started in Debug mode 3) And then either click on the debug and select update classes and resources or On frame deactivation select update classes and resources 4) output build to put in folder target - ru51an

0