Merge branch '6.0.x'
# Conflicts: # spring-orm/src/main/java/org/springframework/orm/jpa/vendor/HibernateJpaDialect.java
This commit is contained in:
commit
653a631df5
|
|
@ -94,7 +94,7 @@ public class HibernateExceptionTranslator implements PersistenceExceptionTransla
|
|||
DataAccessException dae = this.jdbcExceptionTranslator.translate(
|
||||
"Hibernate operation: " + jdbcEx.getMessage(), jdbcEx.getSQL(), jdbcEx.getSQLException());
|
||||
if (dae != null) {
|
||||
throw dae;
|
||||
return dae;
|
||||
}
|
||||
}
|
||||
return SessionFactoryUtils.convertHibernateAccessException(ex);
|
||||
|
|
|
|||
|
|
@ -784,8 +784,6 @@ public class HibernateTransactionManager extends AbstractPlatformTransactionMana
|
|||
/**
|
||||
* Convert the given HibernateException to an appropriate exception
|
||||
* from the {@code org.springframework.dao} hierarchy.
|
||||
* <p>Will automatically apply a specified SQLExceptionTranslator to a
|
||||
* Hibernate JDBCException, else rely on Hibernate's default translation.
|
||||
* @param ex the HibernateException that occurred
|
||||
* @return a corresponding DataAccessException
|
||||
* @see SessionFactoryUtils#convertHibernateAccessException
|
||||
|
|
|
|||
Loading…
Reference in New Issue