Hi Smith, I'm not sure what BeanMapping class you're referring to, but a good library for copying and mapping one Java bean to another is the Dozer library (link below).
Dozer: http://dozer.sourceforge.net/ Dozer is open source. You can read up on the license and its terms at the link provided. One thing I wanted to point out was that mapping DTO classes in GWT usually comes from the need to map a non-serializable Java type across the wire. Such cases come up for EJBs and Hibernate objects, but if you're using standard POJOs, you should be able to use GWT RPC and transfer your types without needing a mapping step in between. You can read up more on GWT RPC to see if you can already use it out-of-the-box. GWT RPC: http://code.google.com/docreader/#p=google-web-toolkit-doc-1-5&s=google-web-toolkit-doc-1-5&t=DevGuideRemoteProcedureCalls Hope that helps, -Sumit Chandel On Thu, Dec 4, 2008 at 1:50 PM, Smith <[EMAIL PROTECTED]> wrote: > > All, > > I wanted to use BeanMapping class to do my conversion between the > local model and the remote DTO model and I have three questions: > > > 1) Is that open source? > > > 2)Where can I download it? > > 3) What other option do we have other than using this class? I don't > want to write code for creating all the client beans from the beans > the service implementation knows > > > Thanks > > > > --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
