We are currently working on a very complex project that has: * A very large set of Data Objects which all extend from a Single Super Class ( eg. MyObject, MyObject1 extends MyObject, MyObject2 extends MyObject ... MyObject50 extends MyObject) * each of these objects have 10-30 properties, often consisting of my varients of MyObjects
As a result, when I try and bind a RPC service ( GWT.create ( MyObjectService.class ); ), it is taking 10+ seconds to bind. Running in debug hosted mode using -extra indicates that, in fact, the log output of the RPC binding is over 17,000 LINES!!!! I have broken up my application into several separate GWT modules, and roughly each one has its own RPC service. Each time it is called and bound using deferred binding, there is this 10+ second delay. This is obviously slowing down development/testing, and probably doing a lot of other bad things at the same time. I'm sure there must be a better way. I am very curious (anxious) to know others thoughts on how to avoid this situation when dealing with large, intertwined models. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
