解决javax.persistence.EntityNotFoundException: Unable to find
Posted mfsqzzz
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决javax.persistence.EntityNotFoundException: Unable to find相关的知识,希望对你有一定的参考价值。
原:
javax.persistence.EntityNotFoundException: Unable to find
原因: 无论是@OneToOne 还是@ManyToOne,出现这个原因都是因为子表(被关联表)中没有主表(关联表)中ID所对应的记录。
解决:@NotFound(action= NotFoundAction.IGNORE)//这样,当子表中没找到数据时,主表中对应的field就是null,而不会报错了
以上是关于解决javax.persistence.EntityNotFoundException: Unable to find的主要内容,如果未能解决你的问题,请参考以下文章