--
You received this message because you are subscribed to the Google Groups "Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-appengi...@googlegroups.com.
To post to this group, send email to google-a...@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/CALSvALD%3DEJ%3DY9Qnq-4rpX0dsd11Q0j8Ho0OUzA%3D2kz_o5RL2Ew%40mail.gmail.com.
<build>
<!-- for hot reload of the web application-->
<outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/classes</outputDirectory>
<plugins>
<plugin>
.....
Then Eclipse, NetBeans and IntelliJ which are all supporting incremental compile on a java file Save, or update the static file resources in the exploded war directory, will trigger automatically a App Server restart, enable hot swap of your application just by saving files in the IDE:
Save and reload the app in the browser... Very effective.
Also documented at:
https://cloud.google.com/appengine/docs/java/tools/maven#app_engine_maven_plugin_goals
(Same feature is available for Managed VMs, and the cloud SDK Maven plugin:
https://cloud.google.com/appengine/docs/java/managed-vms/maven
)
Ludo