Yes!  Fantastic new feature in GWT 2.0 called Code Splitting addresses
exactly this.  See here: 
http://code.google.com/webtoolkit/doc/latest/DevGuideCodeSplitting.html

With a good code base and intelligent partitioning of separate pieces,
GWT will do all the dependency analysis and break off as much as
possible into chunks that are loaded when needed at runtime.  I've
used this with great success to partition off large chunks of code not
needed at startup, but which might be used some point at runtime.  Now
I can have as large an monolithic app as I want and not worry about
the load time getting ridiculous.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to