Hello, I am trying to convert a bean that has a collection of objects to a bean that has a collection of different objects:
I.E. Company1 class contains Set<MyEmployee> ... Company2 class contains Set<AnotherEmployee> ... I would like to be able to call BeanUtil.copyProperties(company1, company2); I thought I would just need to write and register a converter class that know how to convert MyEmployee to AnotherEmployee. Anyone had success with this before? Thanks
