Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Friends, I am trying to convert DO to DTO using java and looking for automated tool before start writing my own. I just wanted to know if there any free tool available for the same.

share|improve this question

closed as not constructive by S.L. Barth, kleopatra, Ian Roberts, stealthyninja, Graviton Nov 14 '12 at 13:39

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

11 Answers

up vote 41 down vote accepted

You could try Dozer.

Dozer is a Java Bean to Java Bean mapper that recursively copies data from one object to another. Typically, these Java Beans will be of different complex types.

Dozer supports simple property mapping, complex type mapping, bi-directional mapping, implicit-explicit mapping, as well as recursive mapping. This includes mapping collection attributes that also need mapping at the element level.

share|improve this answer
2  
seems promising let me try that out. Thanks skaffman – RN. Sep 16 '09 at 13:10
this Dozer looks very good to me :-) thanks for the tip. – Peter Perháč Oct 16 '11 at 20:36

There are some libraries around there:

  • Transmorph: Transmorph is a free java library used to convert a Java object of one type into an object of another type (with another signature, possibly parameterized).

  • EZMorph: EZMorph is simple java library for transforming an Object to another Object. It supports transformations for primitives and Objects, for multidimensional arrays and transformations with DynaBeans

  • Commons-BeanUtils: ConvertUtils -> Utility methods for converting String scalar values to objects of the specified Class, String arrays to arrays of the specified Class.

  • Commons-Lang: ArrayUtils -> Operations on arrays, primitive arrays (like int[]) and primitive wrapper arrays (like Integer[]).

  • Commons-Convert: Commons-Convert aims to provide a single library dedicated to the task of converting an object of one type to another. The first stage will focus on Object to String and String to Object conversions.

  • Morph: Morph is a Java framework that eases the internal interoperability of an application. As information flows through an application, it undergoes multiple transformations. Morph provides a standard way to implement these transformations.

  • Lorentz: Lorentz is a generic object-to-object conversion framework. It provides a simple API to convert a Java objects of one type into an object of another type. (seems dead)

  • Spring framework: Spring has an excellent support for PropertyEditors, that can also be used to transform Objects to/from Strings.

  • Dozer: Dozer is a powerful, yet simple Java Bean to Java Bean mapper that recursively copies data from one object to another. Typically, these Java Beans will be of different complex types.

  • ModelMapper: ModelMapper is an intelligent object mapping framework that automatically maps objects to each other. It uses a convention based approach to map objects while providing a simple refactoring safe API for handling specific use cases.

  • OTOM: With OTOM, you can copy any data from any object to any other object. The possibilities are endless. Welcome to "Autumn".

  • Smooks: The Smooks JavaBean Cartridge allows you to create and populate Java objects from your message data (i.e. bind data to) (suggested by superfilin in comments).

Transmorph (pretty recent), EZMorph, Dozer, ModelMapper, OTOM are all serious candidates. Dozer seems to be the most active project though (and maybe the most advanced).

share|improve this answer
oh man Pascal, I really appreciate this. thank you. – RN. Sep 16 '09 at 13:32
1  
+1 for a great big list – KLE Sep 16 '09 at 13:33
none of the list supports annotation :( – RN. Sep 17 '09 at 7:21
1  
I would also add Smooks to that list. smooks.org/mediawiki/… – Andrey Adamovich Dec 16 '09 at 22:37
@superfilin Thanks! I wasn't aware of this one and will definitely have a look at it. – Pascal Thivent Dec 16 '09 at 23:16
show 3 more comments

Another one is Orika - http://code.google.com/p/orika/

share|improve this answer
you could provide a few words about orika - what makes it different from the others – user503413 Apr 8 at 13:49

Use Apache commons beanutils:

static void copyProperties(Object dest, Object orig) -Copy property values from the origin bean to the destination bean for all cases where the property names are the same.

http://commons.apache.org/beanutils/api/index.html

share|improve this answer
2  
yeh,but properties that are in the source bean, but do not in the destination bean are simply ignored. Thanks anyways Pablojim :) I think I have to go with Dozer since we have some property names different for DO and DTO :( – RN. Sep 16 '09 at 13:30
1  
Fair enough - I didn't know this... Pascal's list was pretty impressive! – Pablojim Sep 16 '09 at 18:33

ModelMapper is another library worth checking out. ModelMapper's design is different from other libraries in that it:

  • Automatically maps object models by intelligently matching source and destination properties
  • Provides a refactoring safe mapping API that uses actual code to map properties rather than using string references or XML
  • Utilizes convention based configuration for simple handling of complex scenarios

Check out the ModelMapper site for more info:

http://modelmapper.org

share|improve this answer

There is one more Java mapping engine/framework Nomin: http://nomin.sourceforge.net.

share|improve this answer

I'm happy to add Moo as an option, although clearly I'm biased towards it: http://geoffreywiseman.github.com/Moo/

It's very easy to use for simple cases, reasonable capable for more complex cases, although there are still some areas where I can imagine enhancing it for even further complexities.

share|improve this answer

You can also try mapping framework based on Dozer, but with Excel mapping declaration. They've got some tools and additional cool features. Check at http://openl-tablets.sf.net/mapper

share|improve this answer

Try OMapper.. http://code.google.com/p/omapper/

share|improve this answer
stackoverflow.com/faq#promotion. I see that you may be contributing to OMapper :-) – aishwarya Dec 5 '11 at 16:59

Yet another mapping tool if you are into Eclipse: http://www.modelbridge.org/

We built our own and open-sourced it because we wanted to generate the mapping code rather than interpret the mapping definition.

share|improve this answer

I found another framework: JMapper, is complete and powerful, has features as 1 to N and N to 1 relationships and functions such as enrichment, definition of the mapping type etc.. .

Try it [click here] (http://code.google.com/p/jmapper-framework/)

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.