应用程序抛出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?

想法是,如果可以获取约束名称,则可以提供适当的错误消息。

最佳答案

没有为此的方法,但是您可以使用提供的消息来做到这一点。

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

09-05 16:41