It doesn't seem to do this by default, which is pretty shocking to me given all the other stuff they've set up to make development easy. Is there a way to enable this? If not, anybody know why it isn't supported?

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

This is an open feature request on the App Engine Issue Tracker. You should vote on it there.

FWIW, it does work with JSP as expected (they get invalidated and recompiled when you update them).

link|improve this answer
feedback

There is JRebel that can help you with this http://englove.blogspot.com/2010/09/appengine-hot-deploy-on-mac.html

But using JRebel i had troubles with GWT in Development Mode.

BUt, there is a simplier way to do it. You can have hot deploy of your server clases if you debug your application in Eclipse.

Debug As -> Web Application

That's all! :)

link|improve this answer
I can confirm that debugging the app is working for me. Thanks a bunch, nacho3d! – c15c8ra1n Oct 3 '10 at 12:45
Thank you very much. This makes me so happy. – Andrew Cone Apr 1 '11 at 17:58
feedback

i realized that local server reload when i modify and save the appengine-web.xml file, so i created a build.xml file with this instructions and runs from eclipse+ant, so i have hot deploy

<?xml version="1.0"?>

<project default="main" basedir=".">
<property name="appengine" location="${basedir}/war/WEB-INF/appengine-web.xml" />


<target name="main">
    <echo message="REINICIANDO SERVIDOR LOCAL ${appengine}" />
    <touch file="${appengine}" />
</target>

</project>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.