我正在使用 MapStruct 在 JPA 实体和 POJO DTO 之间进行映射。
我所有的实体都扩展了一个具有 ID 字段 (a java.lang.Long
) 的公共基类。
我有以下抽象映射器,它允许我从 JPA 中的关系映射到 DTO 中的简单长字段(或列表)。
实体或List<entity>
字段可以映射到Long
/List<Long>
字段,例如User.groups
可以映射到UserDTO.groupIds
:
@Mapper
public abstract class EntityMapper {
public Long entityToLongId(AbstractBaseEntity entity){
return entity.getId();
}
public abstract List<Long> entityCollectionToLongIdList(Collection<? extends AbstractBaseEntity> entities);
}
然而,生成的实现类不包含该类的任何导入语句AbstractBaseEntity
,尽管它存在于抽象类中,因此代码无法编译:
package ....;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import javax.annotation.Generated;
import org.springframework.stereotype.Component;
@Generated(
value = "org.mapstruct.ap.MappingProcessor",
date = "2016-07-27T12:11:25+0200",
comments = "version: 1.0.0.Final, compiler: javac, environment: Java 1.8.0_66 (Oracle Corporation)"
)
@Component
public class EntityMapperImpl extends EntityMapper {
@Override
public List<Long> entityCollectionToLongIdList(Collection<? extends ch.unine.tango.model.AbstractBaseEntity> entities) {
if ( entities == null ) {
return null;
}
List<Long> list = new ArrayList<Long>();
for ( AbstractBaseEntity abstractBaseEntity : entities ) { // compilation error here !
list.add( entityToLongId( abstractBaseEntity ) );
}
return list;
}
}
这是为什么 ?我做错了吗?如何解决这个问题?
我在 Java 8 中使用 MapStruct 1.0.0.Final。
编辑:如果我添加一个直接使用该类的抽象方法,AbstractBaseEntity
则添加导入:
public abstract AbstractBaseEntityDTO entityToDTO(AbstractBaseEntity abstractBaseEntity);
EDIT2:在 MapStruct 的 Github 上发布问题:https ://github.com/mapstruct/mapstruct/issues/844