Vishant... more than one year ago we've started a GWT/Java/Spring application, and we were also struggling with the idea of having to work with a single Entry Point in the application (this was the first GWT app we built), and we decided to try with more than one module/entry point in the application, for the main reason that the initial load of the page would take too much time.
In later stages we realized the issue with that was to control the interaction between those modules (specially events), and because we had more than 1 module/entry point the application wasn't 100% asynchronous. Now we just upgraded to GWT2.0 (ms2) and changed everything to a single module/entry point. This decision to move to a single entry point was made because GWT 2.0 has the GWT.runAsync that creates split points which load .js on demand, so we could solve the initial load issue. Anyway, I think you should take a look at the videos in Google IO, and if you already know something about GWT, here is where you should start: http://code.google.com/events/io/sessions/GoogleWebToolkitBestPractices.html Regards, Henrique Viecili On Nov 5, 9:52 am, Jack <[email protected]> wrote: > Hello GWT Team, > > We are planning to develop tiny ERP in Google Web Toolkit. But we have > come thorugh the one of the restriction of GWT as it only allows to > have one Entry Point in Application. I have searched on Internet but > could not breatk through. > > Please explain a simple case where i have a multiple pages like login, > home, diffrent pages on each menu cliecked. How to handle such case..? > 1) Creating a Page as a Widget and load a widget on each click on > pagel > OR > 2) Create a different modules on each page and load a module on each > click . (If so please let us know an sample code to load a module and > pass a data securely to other module). > > We have a team setup for PHP & Java Struts / Spring Framework, i have > gone through the many ebooks and article but could not find the > appropriate content. please suggest some online links or material. > > Thank you in advance. Waiting for your response. > > Regards, > Vishant Shah --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
