This is probably an easy one, but I cant find it in the docs. I have a person class
class BasicPerson {
private String name;
private int age;
private Date birthDate;
// getters/setters omitted
}
and a list of it
ArrayList<Person>
I want to change them to change them to
ArrayList<PersonDTO>
but with out an explicit loop. Is there a way to use MapperFacade.map for a list to list one line conversion ?