views:

283

answers:

2

There is a mechanism to load dinamically a GWT Module?

The idea is to create a pluggable GWT-based system: a core GWT module that load dinamically other GWT module and a bus communication system permit the communication through loaded modules.

Any idea?

A: 

Possible duplicate of http://stackoverflow.com/questions/2567112/web-application-using-osgi-and-gwt/2567733#2567733

Also, see the information in this GWT User forum thread - http://groups.google.com/group/google-web-toolkit/msg/4a3f912cb89a7256

To summarize, its possible, but not recommended. Your requirement is orthogonal to GWT's philosophy and architecture. If you must, the GWT Exporter project is a useful starting point to enable communication between modules.

sri
How can i reach the solution using GWT Exporter Project? Can i load dinamically a panel from another GWT Module?
Simone Vellei
A: 

You can use code splitting to dynamically loading the code when ever you want.

Have a look http://code.google.com/webtoolkit/doc/latest/DevGuideCodeSplitting.html

Ronny Bubke
The split code refer to same GWT module. I've modules developed by 3rd party that i want integrate in my existent modules.
Simone Vellei