Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does Google App Engine Java support Hot Deployment in Eclipse?

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?

like image 543
bpapa Avatar asked Aug 07 '09 03:08

bpapa


2 Answers

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! :)

like image 127
iVela Avatar answered Sep 20 '22 09:09

iVela


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).

like image 45
Thilo Avatar answered Sep 19 '22 09:09

Thilo