实体和DTO不匹配

时间:2019-12-11 15:33:37

标签: java-ee dto

我为此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。

0 个答案:

没有答案