Package | Description |
---|---|
org.springframework.jdbc.datasource |
Provides a utility class for easy DataSource access,
a PlatformTransactionManager for a single DataSource,
and various simple DataSource implementations.
|
org.springframework.orm.jpa |
Package providing integration of JPA (Java Persistence API) with Spring concepts.
|
org.springframework.transaction |
Spring's core transaction management APIs (independent of any specific transaction
management system); an exception hierarchy for Spring's transaction infrastructure;
and transaction manager, definition, and status interfaces.
|
org.springframework.transaction.support |
Support classes for the org.springframework.transaction package.
|
Modifier and Type | Class and Description |
---|---|
class |
JdbcTransactionObjectSupport
Convenient base class for JDBC-aware transaction objects.
|
Modifier and Type | Method and Description |
---|---|
protected SavepointManager |
EntityManagerHolder.getSavepointManager() |
Modifier and Type | Method and Description |
---|---|
protected void |
EntityManagerHolder.setSavepointManager(SavepointManager savepointManager) |
Modifier and Type | Interface and Description |
---|---|
interface |
TransactionStatus
Representation of an ongoing
PlatformTransactionManager transaction. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractTransactionStatus
Abstract base implementation of the
TransactionStatus interface. |
class |
DefaultTransactionStatus
Default implementation of the
TransactionStatus
interface, used by AbstractPlatformTransactionManager . |
class |
SimpleTransactionStatus
A simple
TransactionStatus
implementation. |
Modifier and Type | Method and Description |
---|---|
protected SavepointManager |
DefaultTransactionStatus.getSavepointManager()
This implementation exposes the
SavepointManager interface
of the underlying transaction object, if any. |
protected SavepointManager |
AbstractTransactionStatus.getSavepointManager()
Return a SavepointManager for the underlying transaction, if possible.
|