我映射的模型如下:
@Entity
public class Notification {
@ManyToOne(fetch = FetchType.LAZY)
@JoinColumn(name="ad")
@Where(clause="is_deleted <> '1'")
@JsonIgnore
public Ad getAd() {
return ad;
}
}
当Hibernate尝试获取此广告时,会显示错误:
Method threw 'javax.persistence.EntityNotFoundException' exception.
Cannot evaluate Ad_$$_javassist_1.toString()
答案 0 :(得分:0)
由于您的表中没有要检索的任何数据,因此是此异常的原因。
在表中首先插入记录比尝试获取数据不会有任何异常
谢谢 昌丹