这是我在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;

07-24 09:17
查看更多