Dozer is a nice little object mapper. It moves data from one object to another.
1 2 3 4 5 6 7 8 | < mapping > < class-a >z.Original</ class-a > < class-b >a.Kloon</ class-b > < field > < a >identity</ a > < b >uid</ b > </ field > </ mapping > |
1 2 3 | public Kloon getDto (Original o) { return dozerMapper.map(o, Kloon. class ); } |
MapStruct is a good annotation driven alternative.