我正在使用 mongodb,因此我正在将实体与创建 DTO 的表示层分离(使用 hibernate-validator 注释)。
public abstract class UserDTO {
private String id;
@NotNull
protected String firstName;
@NotNull
protected String lastName;
protected UserType type;
protected ContactInfoDTO contact;
protected List<ResumeDTO> resumes;
public UserDTO(){}
//...
我正在尝试从数据库中检索这个具体的类
public class UserType1DTO extends UserDTO {
private CompanyDTO company;
public UserType1DTO(){
super();
}
public UserType1DTO(String firstName, String lastName, ContactInfoDTO contact, CompanyDTO company) {
super(UserType.type1, firstName, lastName, contact);
this.company = company;
}
/...
像这样:
return mapper.map((UserType1) entity,UserType1DTO.class);
我得到这个关于无法实例化的错误ResumeDTO
Failed to instantiate instance of destination *.dto.ResumeDTO. Ensure that *.dto.ResumeDTO has a non-private no-argument constructor.
ResumeDTO 与 UserDTO 类似,是一个抽象类,每个用户类型都有具体的类。他们都有没有参数的构造函数。问题是什么?