hibernate的not-found="ignore"

Hibernate的many-to-one的元素的一个属性:not-found

今天看Hibernate Reference,看到多对一关系时,看到mant-to-one元素有一个属性:not-found。
用来指定引用的外键不存在时将如何处理:
  • exception(默认)抛出异常
  • ignore 忽略

以前不知道有这个属性,Hibernate就采用默认的抛出异常来处理了。经常出现显示一个项目的列表时没有数据。 



你可能感兴趣的:(Hibernate)