See: Description
Interface | Description |
---|---|
JdoDialect |
SPI strategy that allows for customizing integration with a specific JDO provider,
in particular regarding transaction management and exception translation.
|
Class | Description |
---|---|
DefaultJdoDialect |
Default implementation of the
JdoDialect interface. |
JdoTransactionManager |
PlatformTransactionManager implementation for a
single JDO PersistenceManagerFactory . |
LocalPersistenceManagerFactoryBean |
FactoryBean that creates a
JDO PersistenceManagerFactory . |
PersistenceManagerFactoryUtils |
Helper class featuring methods for JDO
PersistenceManager handling,
allowing for reuse of PersistenceManager instances within transactions. |
PersistenceManagerHolder |
Holder wrapping a JDO PersistenceManager.
|
TransactionAwarePersistenceManagerFactoryProxy |
Proxy for a target JDO
PersistenceManagerFactory ,
returning the current thread-bound PersistenceManager (the Spring-managed
transactional PersistenceManager or the single OpenPersistenceManagerInView
PersistenceManager) on getPersistenceManager() , if any. |
Exception | Description |
---|---|
JdoObjectRetrievalFailureException |
JDO-specific subclass of ObjectRetrievalFailureException.
|
JdoOptimisticLockingFailureException |
JDO-specific subclass of ObjectOptimisticLockingFailureException.
|
JdoResourceFailureException |
JDO-specific subclass of DataAccessResourceFailureException.
|
JdoSystemException |
JDO-specific subclass of UncategorizedDataAccessException,
for JDO system errors that do not match any concrete
org.springframework.dao exceptions. |
JdoUsageException |
JDO-specific subclass of InvalidDataAccessApiUsageException.
|