java.lang.Objectorg.springframework.orm.jpa.DefaultJpaDialect
All Implemented Interfaces:
Serializable, JpaDialect
Direct Known Subclasses:
HibernateJpaDialect, OpenJpaDialect, TopLinkJpaDialect, EclipseLinkJpaDialect
Simply begins a standard JPA transaction in #beginTransaction and performs standard exception translation through EntityManagerFactoryUtils .
Juergen - Hoeller2.0 - | Method from org.springframework.orm.jpa.DefaultJpaDialect Summary: |
|---|
| beginTransaction, cleanupTransaction, getEntityManagerFactoryPlusOperations, getEntityManagerPlusOperations, getJdbcConnection, prepareTransaction, releaseJdbcConnection, supportsEntityManagerFactoryPlusOperations, supportsEntityManagerPlusOperations, translateExceptionIfPossible |
| Methods from java.lang.Object: |
|---|
| equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method from org.springframework.orm.jpa.DefaultJpaDialect Detail: |
|---|
Transaction.begin
method. Throws an InvalidIsolationLevelException if a non-default isolation
level is set.
This implementation does not return any transaction data Object, since there
is no state to be kept for a standard JPA transaction. Hence, subclasses do not
have to care about the return value ( |
beginTransaction
implementation does not require any cleanup. |
|
|
null,
indicating that no JDBC Connection can be provided. |
|
If the JPA implementation returns a Connection handle that it expects
the application to close after use, the dialect implementation needs to invoke
|
|
|
|