Mapstruct 找不到属性的泛型类型。让我们举个例子来说明我想要做什么。
考虑以下 dtos :
class ListForm<T> {
private Collection<T> adds;
private Collection<T> changes;
private Collection<T> deletes;
}
class Person {
private String name;
}
class PersonDto {
private String name;
}
我尝试实现以下映射器:
@Mapper
public interface OccupantMapper {
ListForm<Person> test(ListForm<PersonDto> person);
Collection<Person> toPersons (Collection<PersonDto> persons);
}
但这是 mapstruct 生成的一部分:
ListForm<Person> listForm= new ListForm<Person>();
if ( occ.getAjouts() != null ) {
if ( listForm.getAjouts() != null ) {
// problem here, mapstruct can't find the type of the attribute
Collection<T> targetCollection = person.getAdds();
if ( targetCollection != null ) {
listForm.getAjouts().addAll( targetCollection );
}
}
}
正如您在下面的代码中看到的,mapstruct 找不到目标集合的类型。它不会将 PersonDto 列表转换为 Person 列表。这是 mapstruct 应该生成的内容。
Collection<Occupant> targetCollection = toPersons(person.getAdds());
你能告诉我这是否是一个错误吗?如果有修复?还是我应该做不同的事情?谢谢,