我为此Entity Class
创建了一个DTO
和一个Entity Class
。以下是我的DTO
的初始化。
public final class exampleDTO implements Serializable {
public static final double INVALID_VALUE = -1;
// Here I initialized the constructor and all other getter and setters for attributes.
}
我的DTO类具有相同的属性和方法,就像实体类一样。但是,当我使用DTO时会说EntityClass cannot be matched to DTO
。
我正在使用JAVA EE,并且从数据库中获取了数据之后,我正在使用DTO来显示所有内容,但是无法将数据转换为DTO。