Convert List of one type to Array of another type using Dozer
- by aheu
I'm wondering how to convert a List of one type to an array of another type in Java using Dozer. The two types have all the same property names/types.
For example, consider these two classes.
public class A{
private String test = null;
public String getTest(){
return this.test
}
public void setTest(String test){
…