hibernate异常:not-null property references a null or transient value

 http://blog.163.com/xiexueyong1987@126/blog/static/1262673422009106103128236/

调用delete()时,出现PropertyValueException:not-null property references a null or transient value异常

原因:当你在Hmb映射文件中(*.hbm.xml)的标记内使用了not-null(默认为false)属性,并且值等于true,那么调用delete()方法,则hibernate会抛出PropertyValueException:not-null property references a null or transient value ,引用的属性不能为空值。

 

你可能感兴趣的:(Hibernate)