|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.springframework.transaction.support.AbstractPlatformTransactionManager org.springframework.orm.jdo.JdoTransactionManager
PlatformTransactionManager implementation for single JDO persistence manager factories. Binds a JDO PersistenceManager from the specified factory to the thread, potentially allowing for one thread PersistenceManager per factory. PersistenceManagerFactoryUtils and JdoTemplate are aware of thread-bound persistence managers and take part in such transactions automatically. Using either is required for JDO access code supporting this transaction management mechanism.
This implementation is appropriate for applications that solely use JDO for transactional data access. JTA resp. JtaTransactionManager is necessary for accessing multiple transactional resources. Note that you need to configure your JDO tool accordingly to make it participate in JTA transactions. In contrast to Hibernate, this cannot be transparently provided by the Spring transaction manager implementation.
setPersistenceManagerFactory(javax.jdo.PersistenceManagerFactory)
,
setDataSource(javax.sql.DataSource)
,
PersistenceManagerFactoryUtils.getPersistenceManager(javax.jdo.PersistenceManagerFactory, boolean)
,
PersistenceManagerFactoryUtils.closePersistenceManagerIfNecessary(javax.jdo.PersistenceManager, javax.jdo.PersistenceManagerFactory)
,
JdoTemplate.execute(org.springframework.orm.jdo.JdoCallback)
,
HibernateTransactionManager
Field Summary |
Fields inherited from class org.springframework.transaction.support.AbstractPlatformTransactionManager |
logger, SYNCHRONIZATION_ALWAYS, SYNCHRONIZATION_NEVER, SYNCHRONIZATION_ON_ACTUAL_TRANSACTION |
Constructor Summary | |
JdoTransactionManager()
Create a new JdoTransactionManager instance. |
|
JdoTransactionManager(javax.jdo.PersistenceManagerFactory pmf)
Create a new JdoTransactionManager instance. |
Method Summary | |
void |
afterPropertiesSet()
Invoked by a BeanFactory after it has set all bean properties supplied (and satisfied BeanFactoryAware and ApplicationContextAware). |
protected DataAccessException |
convertJdoAccessException(javax.jdo.JDOException ex)
Convert the given JDOException to an appropriate exception from the org.springframework.dao hierarchy. |
protected void |
doBegin(java.lang.Object transaction,
TransactionDefinition definition)
Begin a new transaction with the given transaction definition. |
protected void |
doCleanupAfterCompletion(java.lang.Object transaction)
Cleanup resources after transaction completion. |
protected void |
doCommit(DefaultTransactionStatus status)
Perform an actual commit on the given transaction. |
protected java.lang.Object |
doGetTransaction()
Return a current transaction object, i.e. |
protected void |
doResume(java.lang.Object transaction,
java.lang.Object suspendedResources)
Resume the resources of the current transaction. |
protected void |
doRollback(DefaultTransactionStatus status)
Perform an actual rollback on the given transaction. |
protected void |
doSetRollbackOnly(DefaultTransactionStatus status)
Set the given transaction rollback-only. |
protected java.lang.Object |
doSuspend(java.lang.Object transaction)
Suspend the resources of the current transaction. |
javax.sql.DataSource |
getDataSource()
Return the JDBC DataSource that this instance manages transactions for. |
JdoDialect |
getJdoDialect()
Return the JDO dialect to use for this transaction manager. |
javax.jdo.PersistenceManagerFactory |
getPersistenceManagerFactory()
Return the PersistenceManagerFactory that this instance should manage transactions for. |
protected boolean |
isExistingTransaction(java.lang.Object transaction)
Check if the given transaction object indicates an existing, i.e. |
protected boolean |
isRollbackOnly(java.lang.Object transaction)
Check if the given transaction object indicates a rollback-only, assumably from a nested transaction (else, the TransactionStatus of this transaction would have indicated rollback-only). |
void |
setDataSource(javax.sql.DataSource dataSource)
Set the JDBC DataSource that this instance should manage transactions for. |
void |
setJdoDialect(JdoDialect jdoDialect)
Set the JDO dialect to use for this transaction manager. |
void |
setPersistenceManagerFactory(javax.jdo.PersistenceManagerFactory pmf)
Set the PersistenceManagerFactory that this instance should manage transactions for. |
Methods inherited from class org.springframework.transaction.support.AbstractPlatformTransactionManager |
commit, getTransaction, getTransactionSynchronization, isRollbackOnCommitFailure, rollback, setRollbackOnCommitFailure, setTransactionSynchronization, setTransactionSynchronizationName |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public JdoTransactionManager()
setPersistenceManagerFactory(javax.jdo.PersistenceManagerFactory)
public JdoTransactionManager(javax.jdo.PersistenceManagerFactory pmf)
pmf
- PersistenceManagerFactory to manage transactions forMethod Detail |
public void setPersistenceManagerFactory(javax.jdo.PersistenceManagerFactory pmf)
public javax.jdo.PersistenceManagerFactory getPersistenceManagerFactory()
public void setDataSource(javax.sql.DataSource dataSource)
If the PersistenceManagerFactory uses a DataSource as connection factory, the DataSource will be auto-detected: You can still explictly specify the DataSource, but you don't need to in this case.
A transactional JDBC Connection for this DataSource will be provided to application code accessing this DataSource directly via DataSourceUtils or JdbcTemplate. The Connection will be taken from the JDO PersistenceManager.
Note that you need to use a JDO dialect for a specific JDO implementation to allow for exposing JDO transactions as JDBC transactions.
setJdoDialect(org.springframework.orm.jdo.JdoDialect)
,
PersistenceManagerFactory.getConnectionFactory()
,
LocalPersistenceManagerFactoryBean.setDataSource(javax.sql.DataSource)
public javax.sql.DataSource getDataSource()
public void setJdoDialect(JdoDialect jdoDialect)
The dialect object can be used to retrieve the underlying JDBC connection and thus allows for exposing JDO transactions as JDBC transactions.
public JdoDialect getJdoDialect()
public void afterPropertiesSet()
InitializingBean
This method allows the bean instance to perform initialization only possible when all bean properties have been set and to throw an exception in the event of misconfiguration.
afterPropertiesSet
in interface InitializingBean
protected java.lang.Object doGetTransaction()
AbstractPlatformTransactionManager
doGetTransaction
in class AbstractPlatformTransactionManager
protected boolean isExistingTransaction(java.lang.Object transaction)
AbstractPlatformTransactionManager
isExistingTransaction
in class AbstractPlatformTransactionManager
transaction
- transaction object returned by doGetTransaction
protected void doBegin(java.lang.Object transaction, TransactionDefinition definition)
AbstractPlatformTransactionManager
doBegin
in class AbstractPlatformTransactionManager
transaction
- transaction object returned by doGetTransactiondefinition
- TransactionDefinition instance, describing
propagation behavior, isolation level, timeout etc.protected java.lang.Object doSuspend(java.lang.Object transaction)
AbstractPlatformTransactionManager
doSuspend
in class AbstractPlatformTransactionManager
transaction
- transaction object returned by doGetTransaction
AbstractPlatformTransactionManager.doResume(java.lang.Object, java.lang.Object)
protected void doResume(java.lang.Object transaction, java.lang.Object suspendedResources)
AbstractPlatformTransactionManager
doResume
in class AbstractPlatformTransactionManager
transaction
- transaction object returned by doGetTransactionsuspendedResources
- the object that holds suspended resources,
as returned by doSuspendAbstractPlatformTransactionManager.doSuspend(java.lang.Object)
protected boolean isRollbackOnly(java.lang.Object transaction)
AbstractPlatformTransactionManager
isRollbackOnly
in class AbstractPlatformTransactionManager
transaction
- transaction object returned by doGetTransaction
protected void doCommit(DefaultTransactionStatus status)
AbstractPlatformTransactionManager
doCommit
in class AbstractPlatformTransactionManager
status
- status representation of the transactionprotected void doRollback(DefaultTransactionStatus status)
AbstractPlatformTransactionManager
doRollback
in class AbstractPlatformTransactionManager
status
- status representation of the transactionprotected void doSetRollbackOnly(DefaultTransactionStatus status)
AbstractPlatformTransactionManager
doSetRollbackOnly
in class AbstractPlatformTransactionManager
status
- status representation of the transactionprotected void doCleanupAfterCompletion(java.lang.Object transaction)
AbstractPlatformTransactionManager
doCleanupAfterCompletion
in class AbstractPlatformTransactionManager
transaction
- transaction object returned by doGetTransactionprotected DataAccessException convertJdoAccessException(javax.jdo.JDOException ex)
ex
- JDOException that occured
JdoDialect.translateException(javax.jdo.JDOException)
,
PersistenceManagerFactoryUtils.convertJdoAccessException(javax.jdo.JDOException)
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |