views:

137

answers:

2

Is there Java equivalent of .Net's Automapper?

+1  A: 

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

frm
+1  A: 

Checkout the Dozer project.

Dozer supports simple property mapping, complex type mapping, bi-directional mapping, implicit-explicit mapping, as well as recursive mapping.

It makes use of BeanUtils and extends on it.

dpb