繁体   English   中英

提交会话时发生休眠错误

[英]Hibernate Error When Commit session

这是我在DAOImpl(Hibernate)中的代码:

@Transactional
    public void insert(Cage cage) {

        Session session = null;
        Transaction tx = null;

        try{
            session = getHibernateTemplate().getSessionFactory().openSession();
            tx = session.beginTransaction();
            session.saveOrUpdate(cage);
            session.flush();
            session.clear();
            tx.commit();

        }catch(RuntimeException e){
            try{
                tx.rollback();
            }catch(RuntimeException rbe){
                rbe.printStackTrace();
                System.out.println("Couldn’t roll back transaction");
            }
            throw e;
        }finally{
            if(session!=null){
                session.close();
            }
        }
    }

当第二次发生此问题的操作数据输入(相同PK)时:

org.hibernate.exception.ConstraintViolationException:无法执行JDBC批处理更新

根据您的问题

When for the second time operations data entry (Same PK) takes place with this problem : org.hibernate.exception.ConstraintViolationException:

您试图两次插入相同的主键。 数据库中的两个条目不能具有相同的主键。

主键必须包含UNIQUE值。 检查此链接http://www.w3schools.com/sql/sql_primarykey.asp

保持主键唯一,您将不会遇到此异常。 而且,如果您需要该列的重复条目,请不要将其设为主键

自动生成ID

@Id @GeneratedValue(strategy = GenerationType.AUTO)@Column(name =“ \\” ID \\“”)私有int ID;

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM