首页 > 代码库 > hibernate出现No row with the given identifier exists问题

hibernate出现No row with the given identifier exists问题

产生此问题的原因:

有两张表,table1和table2.产生此问题的原因就是table1里做了关联<one-to-one>或者<many-to-one>来关联table2.当hibernate查找的时候,table2里的数据没有与table1相匹配的,这样就会报No row with the given identifierexists这个错。

 

解决方法:

1.修改数据使关联字段能查询到数据

2.在<many-to-one>中设置not-found="ignore",此时如果关联关系不存在,对应的属性值为Null.

hibernate出现No row with the given identifier exists问题