org.hibernate.exception.ConstraintViolationException 10

为什么我的代码运行一段时间后,在插入数据时就会抛出org.hibernate.exception.ConstraintViolationException这个异常呢??而... 为什么我的代码运行一段时间后,在插入数据时就会抛出org.hibernate.exception.ConstraintViolationException
这个异常呢??而重启后又可以!
注:只是插入数据异常,查询、更新、删除都正常!

<hibernate-mapping package="bean">
<class name="User" table="user">
<id name="id">
<generator class="increment" ></generator>
</id>
<property name="username" column="username"/>
<property name="password" column="password"/>
<property name="name" column="name"/>
<property name="phone" column="phone"/>
<property name="question" column="question"/>
<property name="answer" column="answer"/>
<property name="email" column="email"/>
<property name="address" column="address"/>
<property name="addTime" type="java.util.Date" column="addTime"/>

<set name="by" lazy="true" inverse="true" cascade="all">
<key column="userid"/>
<one-to-many class="Baoyue"/>
</set>
</class>
</hibernate-mapping>

<hibernate-mapping package="bean">
<class name="Baoyue" table="baoyue">

<id name="id">
<generator class="increment" ></generator>
</id>
<property name="userid" column="userid"/>
<property name="countryID" column="countryID"/>
<property name="endTime" type="java.util.Date" column="endTime"/>
</class>
</hibernate-mapping>

插入DAO方法
public int save(User user) throws Exception{
Transaction ts = null;
try{
Session ses = MySessionFactory.currentSession();
ts = ses.beginTransaction();
Serializable sid = ses.save(user);
ts.commit();
int id = Integer.parseInt(sid.toString());
return id;
} catch (Exception ex) {
if(ts!=null&&!ts.wasCommitted()){
ts.rollback();
}
throw new Exception(ex.toString());
}finally{
MySessionFactory.closeSession();
}

}
这是相关两张表的hbm.xml文件
我的代码刚开始运行是能够插入、查询、更新和删除User里的记录,但是运行一段时间后就不能往user里插数据了,抛出上面那个错误,但是还能够交叉查询、修改和删除!
我插入和更新操作只是对User而已,没有对Baoyue进行操作,但查询涉及到两张表的交叉连接!!

为什么会运行一段时间就会出错,而服务器刚跑起来时怎么插怎么行!!郁闷 - -!!
谁能告诉我啊??!!!
展开
 我来答
smluyi
2008-05-26 · TA获得超过1356个赞
知道大有可为答主
回答量:515
采纳率:0%
帮助的人:811万
展开全部
哪个地方的session用完没有关闭,个人经验,估计是楼主在检查下吧
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式