从java.sql.SQLIntegrityConstraintViolationException中提取约束名称

时间:2013-06-25 14:43:01

标签: java sql database oracle java-ee

应用程序抛出java.sql.SQLIntegrityConstraintViolationException,它具有如下的约束名称

    Exception in thread "main" javax.ejb.EJBException: EJB Exception: ; nested exception is: 
    javax.persistence.PersistenceException: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.1.2.v20101206-r8635): org.eclipse.persistence.exceptions.DatabaseException
Internal Exception: java.sql.SQLIntegrityConstraintViolationException: ORA-00001: unique constraint (**CONSTRAINT.UNIQUE_WT**) violated

问题:是否有API /直接方式从异常对象(java.sql.SQLIntegrityConstraintViolationException)获取约束名称 CONSTRAINT.UNIQUE_WT

想法是,如果我可以获得约束名称,我可以提供正确的错误消息。

1 个答案:

答案 0 :(得分:0)

没有这方法,但你可以使用提供的信息来做到这一点。

String constraint = null;
try {
  ...
} catch(SQLIntegrityConstraintViolationException e) {
  constraint = e.getMessage.split("**")[1];
}