Is it possible to automatically restart the Java AppEngine project (which uses Maven) after making changes to the code? That is, after making changes to the code (for example, JSP), I would like to immediately see these changes in a web browser without restarting the project. Is it possible?
I have done the following:
However, changes to the JSP are not automatically reflected when viewing a page in a web browser. I can see the changes by installing (mvn clean install) and then restarting the dev server.
Projects created using the Google Eclipse plug-in are reloaded automatically, however, I would prefer to use Maven, as this will simplify the installation of other software (for example, Spring Framework).
source
share