Class HibernateExceptionTranslator
- All Implemented Interfaces:
PersistenceExceptionTranslator
- Direct Known Subclasses:
LocalSessionFactoryBean
PersistenceExceptionTranslator
capable of translating HibernateException
instances to Spring's DataAccessException
hierarchy. As of Spring 4.3.2 and
Hibernate 5.2, it also converts standard JPA PersistenceException
instances.
Extended by LocalSessionFactoryBean
, so there is no need to declare this
translator in addition to a LocalSessionFactoryBean
.
When configuring the container with @Configuration
classes, a @Bean
of this type must be registered manually.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected DataAccessException
Convert the given HibernateException to an appropriate exception from theorg.springframework.dao
hierarchy.void
setJdbcExceptionTranslator
(SQLExceptionTranslator jdbcExceptionTranslator) Set the JDBC exception translator for Hibernate exception translation purposes.Translate the given runtime exception thrown by a persistence framework to a corresponding exception from Spring's genericDataAccessException
hierarchy, if possible.
-
Constructor Details
-
HibernateExceptionTranslator
public HibernateExceptionTranslator()
-
-
Method Details
-
setJdbcExceptionTranslator
Set the JDBC exception translator for Hibernate exception translation purposes.Applied to any detected
SQLException
root cause of a HibernateJDBCException
, overriding Hibernate's ownSQLException
translation (which is based on a Hibernate Dialect for a specific target database).- Since:
- 5.1
- See Also:
-
translateExceptionIfPossible
Description copied from interface:PersistenceExceptionTranslator
Translate the given runtime exception thrown by a persistence framework to a corresponding exception from Spring's genericDataAccessException
hierarchy, if possible.Do not translate exceptions that are not understood by this translator: for example, if coming from another persistence framework, or resulting from user code or otherwise unrelated to persistence.
Of particular importance is the correct translation to DataIntegrityViolationException, for example on constraint violation. Implementations may use Spring JDBC's sophisticated exception translation to provide further information in the event of SQLException as a root cause.
- Specified by:
translateExceptionIfPossible
in interfacePersistenceExceptionTranslator
- Parameters:
ex
- a RuntimeException to translate- Returns:
- the corresponding DataAccessException (or
null
if the exception could not be translated, as in this case it may result from user code rather than from an actual persistence problem) - See Also:
-
convertHibernateAccessException
Convert the given HibernateException to an appropriate exception from theorg.springframework.dao
hierarchy.Will automatically apply a specified SQLExceptionTranslator to a Hibernate JDBCException, otherwise rely on Hibernate's default translation.
- Parameters:
ex
- the HibernateException that occurred- Returns:
- a corresponding DataAccessException
- See Also:
-