Automapper for Java

Is there a Java equivalent of .Net Automapper ?

+41
java mapping automapper
Jul 23 '10 at 14:19
source share
3 answers

Checkout the Dozer project.

Dozer supports simple property mapping, complex type mapping, bidirectional mapping, implicit explicit mapping, and recursive mapping.

It uses BeanUtils and extends to it.

+21
Sep 13 '10 at 20:17
source share

Check out ModelMapper . It was inspired by AutoMapper, but adds a few new things, such as smart matching.

ModelMapper is an intelligent object that eliminates the need to manually map objects for each Other. It uses a conventions-based approach to map objects while providing a simple API refactoring to handle a specific scenario mapping.

http://modelmapper.org

Also a short blog post from Jimmy Bogard, creator of AutoMapper:

http://lostechies.com/jimmybogard/2012/09/17/automapper-for-java/

+14
Jun 24 2018-11-11T00:
source share

You should check out the Beanutils open source project from Apache Commons .

+1
Jul 23 '10 at 14:32
source share



All Articles