> hi ,
>
> I have got this peculiar problem. while debugging gwt apps using the
> development mode my application module keeps rebinding for a few
> times. A click of a link, a change a tab, a press of a button, a
> dragging of a panel triggers a module rebind. This rebinding process
> at least take around 30 - 40 seconds which is a considerable amount of
> time considering GWT is a RAD tool. So if I have to start debugging
> something it takes me a good 3 to 4 minutes to actually debug
> something.
>
> I am not sure why this is happening . Anybody having any clue.
"Rebinding" (or actually "deferred binding") isn't done per module but
per class passed to GWT.create(). In DevMode this is done "on demand"
so you don't pay for things you don't use during a given debugging
session. Any time you reach a GWT.create() call, DevMode "binds" it:
Messages, Constants, ClientBundles, UiBinders, browser-specific
implementations (DOM, History, some widgets, etc.)
That said, it shouldn't take that long!
--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
No comments:
Post a Comment