Class JdbcTransactionObjectSupport
java.lang.Object
org.springframework.jdbc.datasource.JdbcTransactionObjectSupport
- All Implemented Interfaces:
Flushable
,SavepointManager
,SmartTransactionObject
public abstract class JdbcTransactionObjectSupport
extends Object
implements SavepointManager, SmartTransactionObject
Convenient base class for JDBC-aware transaction objects. Can contain a
ConnectionHolder
with a JDBC Connection
, and implements the
SavepointManager
interface based on that ConnectionHolder
.
Allows for programmatic management of JDBC Savepoints
.
Spring's DefaultTransactionStatus
automatically delegates to this, as it autodetects transaction objects which
implement the SavepointManager
interface.
- Since:
- 1.1
- Author:
- Juergen Hoeller
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionThis implementation creates a JDBC Savepoint and returns it.Return the ConnectionHolder for this transaction object.protected ConnectionHolder
Return the retained previous isolation level, if any.boolean
Check whether this transaction object has a ConnectionHolder.boolean
Return the read-only status of this transaction.boolean
Return whether savepoints are allowed within this transaction.void
releaseSavepoint
(Object savepoint) This implementation releases the given JDBC Savepoint.void
rollbackToSavepoint
(Object savepoint) This implementation rolls back to the given JDBC Savepoint.void
setConnectionHolder
(ConnectionHolder connectionHolder) Set the ConnectionHolder for this transaction object.void
setPreviousIsolationLevel
(Integer previousIsolationLevel) Set the previous isolation level to retain, if any.void
setReadOnly
(boolean readOnly) Set the read-only status of this transaction.void
setSavepointAllowed
(boolean savepointAllowed) Set whether savepoints are allowed within this transaction.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.springframework.transaction.support.SmartTransactionObject
flush, isRollbackOnly
-
Constructor Details
-
JdbcTransactionObjectSupport
public JdbcTransactionObjectSupport()
-
-
Method Details
-
setConnectionHolder
Set the ConnectionHolder for this transaction object. -
getConnectionHolder
Return the ConnectionHolder for this transaction object. -
hasConnectionHolder
public boolean hasConnectionHolder()Check whether this transaction object has a ConnectionHolder. -
setPreviousIsolationLevel
Set the previous isolation level to retain, if any. -
getPreviousIsolationLevel
Return the retained previous isolation level, if any. -
setReadOnly
public void setReadOnly(boolean readOnly) Set the read-only status of this transaction. The default isfalse
.- Since:
- 5.2.1
-
isReadOnly
public boolean isReadOnly()Return the read-only status of this transaction.- Since:
- 5.2.1
-
setSavepointAllowed
public void setSavepointAllowed(boolean savepointAllowed) Set whether savepoints are allowed within this transaction. The default isfalse
. -
isSavepointAllowed
public boolean isSavepointAllowed()Return whether savepoints are allowed within this transaction. -
createSavepoint
This implementation creates a JDBC Savepoint and returns it.- Specified by:
createSavepoint
in interfaceSavepointManager
- Returns:
- a savepoint object, to be passed into
SavepointManager.rollbackToSavepoint(java.lang.Object)
orSavepointManager.releaseSavepoint(java.lang.Object)
- Throws:
NestedTransactionNotSupportedException
- if the underlying transaction does not support savepointsTransactionException
- if the savepoint could not be created, for example because the transaction is not in an appropriate state- See Also:
-
rollbackToSavepoint
This implementation rolls back to the given JDBC Savepoint.- Specified by:
rollbackToSavepoint
in interfaceSavepointManager
- Parameters:
savepoint
- the savepoint to roll back to- Throws:
NestedTransactionNotSupportedException
- if the underlying transaction does not support savepointsTransactionException
- if the rollback failed- See Also:
-
releaseSavepoint
This implementation releases the given JDBC Savepoint.- Specified by:
releaseSavepoint
in interfaceSavepointManager
- Parameters:
savepoint
- the savepoint to release- Throws:
NestedTransactionNotSupportedException
- if the underlying transaction does not support savepointsTransactionException
- if the release failed- See Also:
-
getConnectionHolderForSavepoint
- Throws:
TransactionException
-