标签:做了 ignore row 关系 数据 with 字段 table 产生
产生此问题的原因:
有两张表,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问题
标签:做了 ignore row 关系 数据 with 字段 table 产生
原文地址:http://www.cnblogs.com/jiaobaobao/p/6638788.html