user2772346
user2772346

Reputation: 911

GWT remote server debugging.. Its painfully slow on every browser refresh

I am using GWT 2.5.0 and in my server side code there are several datasources so i am not able to run embedded jetty server. So, I am resolved to use gwt debugger with -noserver option. Now i am able to debug my application but every time i refresh my browser, it takes hell lot of time to load application on browser and also it is very resource consuming.

On my eclipse, i can see through log message on console that every time i refresh, it recompiles all the RPC classes and verify.This process takes a lot of time.

My question is that it should happen only for the first time app gets loaded on browser not on every refresh. Is there any way, to get rid of this. It really takes lot of my time. Looking forward for the help, regards, pankaj

Upvotes: 0

Views: 161

Answers (1)

Olivier Tonglet
Olivier Tonglet

Reputation: 3502

We use JRebel. It spared us months of redeployment efforts. I consider it much better than GWT super dev mode.

Upvotes: 1

Related Questions