0

I have multi tier project with Model, DTO, Managers/Services using DTOs and also some CXF webservices clients with a layer that transforms responses to my models. We are using different approaches, the project is big, we use for example Spring Beautils an many by-hand mappings which can produce errors, are hard to maintain but are fastest.

I've found Orika an interesting library, that doesnt use reflection int the way the Dozer does, it generates code (like the by-hand code) in some point but I don't know when - when you build your application with maven or when the application is being deployed on for example Weblogic server? What would you chhose???

BTW: Do you know any other libraries that are worth using (I use Java 1.7, log4j, junit, spring, hibernate, cxf, jersey, guava, lamba4j)?

  • Possible duplicate of [any tool for java object to object mapping?](https://stackoverflow.com/questions/1432764/any-tool-for-java-object-to-object-mapping) – tkruse Dec 12 '17 at 05:02

1 Answers1

0

You could be interested to see JMapper Framework. Especially as it permits to manage the multi-level mapping (wiki page here)

Alessandro
  • 282
  • 3
  • 10