EntityNotFoundException in Hibernate Many To One mapping however data exist

前端 未结 9 1482
庸人自扰
庸人自扰 2020-12-13 12:39

I am getting javax.persistence.EntityNotFoundException error when I am trying to get User through Invoice object

invoice.getUser().getId()

Error is as follo

9条回答
  •  天命终不由人
    2020-12-13 12:47

    Maybe one comes to this answer and finds it useful: In my case, I have marked my entity as deleted and entity who is relationship with this entity could not find it. So, changing deleted to false worked for me.

提交回复
热议问题