这个问题与大约两年前在这里提出的问题相似。我正在寻找一些信息,当出现一些常见的数据库问题时,如何处理从 Eclipselink 2.5 抛出的异常。我得到的是丑陋org.springframework.transaction.TransactionSystemException
的,它没有给我任何关于失败的信息。让我们以简单实体为例:
@Entity
class Insect(_name: String) {
def this() = this(null)
@Id
@Column(unique = true)
var name: String = _name
}
同样简单的存储库:
@Repository
@Transactional
class InsectDaoImpl extends InsectDao {
@PersistenceContext
var entityManager: EntityManager = _
override def addInsect(insect: Insect) = entityManager.persist(insect)
}
执行以下代码:
insectDao.addInsect(new Insect("hornet"))
insectDao.addInsect(new Insect("hornet"))
给我:
org.springframework.transaction.TransactionSystemException: Could not commit JPA transaction; nested exception is javax.persistence.RollbackException: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.5.0.v20130507-3faac2b): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: org.h2.jdbc.JdbcSQLException: Unique index or primary key violation: "CONSTRAINT_INDEX_8 ON PUBLIC.INSECT(NAME)"; SQL statement:
INSERT INTO INSECT (NAME) VALUES (?) [23505-172]
Error Code: 23505
Call: INSERT INTO INSECT (NAME) VALUES (?)
bind => [1 parameter bound]
Query: InsertObjectQuery(pl.zientarski.model.Insect@1df202be)
废话!异常本身并没有对问题的根源提出任何建设性的意见。内部异常首先是特定于数据库的,其次只有异常消息说明了问题所在。为了比较,与 Hibernate 相同的设置给出了这个例外:
org.springframework.dao.DataIntegrityViolationException: could not execute statement; SQL [n/a]; constraint ["PRIMARY_KEY_8 ON PUBLIC.INSECT(NAME)"; SQL statement:
insert into Insect (name) values (?) [23505-172]]; nested exception is org.hibernate.exception.ConstraintViolationException: could not execute statement
异常类型会立即提示正在发生的事情。
当您查看 Eclipselink 的源代码时,Eclipselink 的工作方式并不令人惊讶。org.springframework.orm.jpa.vendor.EclipseLinkJpaDialect.translateExceptionIfPossible(RuntimeException ex)
首先,它甚至没有被覆盖以支持 Eclipselink 特定的异常,其次,继承自的默认实现DefaultJpaDialect
期望从javax.persistence.PersistenceException
.
我想问你解决这个问题的最佳实践是什么。或者,也许我只是看不到那里的解决方案。请让我知道你的建议。
使用 Eclipselink 2.5 和 Spring 3.2.3 进行测试
谢谢。