Hibernate和Spring框架做了个小例子 报not-null property references a null or transient value这个错误

我是做删除时报的错误用的是cardtran.setCard(null);这句话就报错cardtran是实体详细的错误:Exceptioninthread"main"org... 我是做删除时报的错误 用的是 cardtran.setCard(null);这句话就报错 cardtran是实体
详细的错误:

Exception in thread "main" org.springframework.dao.DataIntegrityViolationException: not-null property references a null or transient value: com.bean.Cardtran.card; nested exception is org.hibernate.PropertyValueException: not-null property references a null or transient value: com.bean.Cardtran.card
查了些资料 说是 not-null属性的问题 于是我把它们都调成false 还是不行
下面是我的hbm.xml文件
<hibernate-mapping>
<class name="com.bean.Card" table="card" catalog="jiaoshi">
<id name="id" type="java.lang.Integer">
<column name="id" />
<generator class="identity" />
</id>
<property name="cardno" type="java.lang.String">
<column name="cardno" length="20" not-null="false" />
</property>
<property name="cname" type="java.lang.String">
<column name="cname" length="10" not-null="false" />
</property>
<property name="balance" type="java.lang.Float">
<column name="balance" precision="10" />
</property>
<set name="cardtrans" inverse="true" lazy="false" >
<key>
<column name="cid" not-null="false" />
</key>
<one-to-many class="com.bean.Cardtran" />
</set>
</class>
</hibernate-mapping>
实体 Card

private Integer id;
private String cardno;
private String cname;
private Float balance;
private Set cardtrans = new HashSet(0);

get和set方法
下面是 实体 Cardtran
private Integer id;
private Card card;
private Float tranmoney;
private Integer cardtype;
private Date cardtime;

get和set方法
展开
 我来答
st__Happy
2013-09-17 · 超过15用户采纳过TA的回答
知道答主
回答量:42
采纳率:40%
帮助的人:38.3万
展开全部

因为card作为一个关联对象,Cardtran的实例将会成为cardtrans中的一个元素,你现在扔了一个null进去,但是看看配置

,这是不是说明必须引用呢,改成一个非空Cardtran对象试一下

百度网友72e7a7f1e
2013-09-17 · 超过20用户采纳过TA的回答
知道答主
回答量:55
采纳率:0%
帮助的人:54.8万
展开全部
吧Cardtran
的配置文件贴出来吧
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
蓝忆枫烁
2018-05-12 · TA获得超过131个赞
知道小有建树答主
回答量:760
采纳率:30%
帮助的人:104万
展开全部
项目给我
.....
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
gongnanfeng12
2013-09-17 · TA获得超过328个赞
知道答主
回答量:274
采纳率:0%
帮助的人:158万
展开全部
是要根据id删除吧,你的id为空么?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 3条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式