Class DataSourceUtils
Connection
s
from a DataSource
. Includes special support for Spring-managed
transactional Connection
s, for example, managed by DataSourceTransactionManager
or JtaTransactionManager
.
Used internally by Spring's JdbcTemplate
,
Spring's JDBC operation objects and the JDBC DataSourceTransactionManager
.
Can also be used directly in application code.
- Author:
- Rod Johnson, Juergen Hoeller
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionstatic final int
Order value for TransactionSynchronization objects that clean up JDBC Connections. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic void
applyTimeout
(Statement stmt, DataSource dataSource, int timeout) Apply the specified timeout - overridden by the current transaction timeout, if any - to the given JDBC Statement object.static void
applyTransactionTimeout
(Statement stmt, DataSource dataSource) Apply the current transaction timeout, if any, to the given JDBC Statement object.static void
doCloseConnection
(Connection con, DataSource dataSource) Close the Connection, unless aSmartDataSource
doesn't want us to.static Connection
doGetConnection
(DataSource dataSource) Actually obtain a JDBC Connection from the given DataSource.static void
doReleaseConnection
(Connection con, DataSource dataSource) Actually close the given Connection, obtained from the given DataSource.static Connection
getConnection
(DataSource dataSource) Obtain a Connection from the given DataSource.static Connection
Return the innermost target Connection of the given Connection.static boolean
isConnectionTransactional
(Connection con, DataSource dataSource) Determine whether the given JDBC Connection is transactional, that is, bound to the current thread by Spring's transaction facilities.static Integer
prepareConnectionForTransaction
(Connection con, TransactionDefinition definition) Prepare the given Connection with the given transaction semantics.static void
releaseConnection
(Connection con, DataSource dataSource) Close the given Connection, obtained from the given DataSource, if it is not managed externally (that is, not bound to the thread).static void
resetConnectionAfterTransaction
(Connection con, Integer previousIsolationLevel) Deprecated.static void
resetConnectionAfterTransaction
(Connection con, Integer previousIsolationLevel, boolean resetReadOnly) Reset the given Connection after a transaction, regarding read-only flag and isolation level.
-
Field Details
-
CONNECTION_SYNCHRONIZATION_ORDER
public static final int CONNECTION_SYNCHRONIZATION_ORDEROrder value for TransactionSynchronization objects that clean up JDBC Connections.- See Also:
-
-
Constructor Details
-
DataSourceUtils
public DataSourceUtils()
-
-
Method Details
-
getConnection
public static Connection getConnection(DataSource dataSource) throws CannotGetJdbcConnectionException Obtain a Connection from the given DataSource. Translates SQLExceptions into the Spring hierarchy of unchecked generic data access exceptions, simplifying calling code and making any exception that is thrown more meaningful.Is aware of a corresponding Connection bound to the current thread, for example when using
DataSourceTransactionManager
. Will bind a Connection to the thread if transaction synchronization is active, for example, when running within aJTA
transaction).- Parameters:
dataSource
- the DataSource to obtain Connections from- Returns:
- a JDBC Connection from the given DataSource
- Throws:
CannotGetJdbcConnectionException
- if the attempt to get a Connection failed- See Also:
-
doGetConnection
Actually obtain a JDBC Connection from the given DataSource. Same asgetConnection(javax.sql.DataSource)
, but throwing the original SQLException.Is aware of a corresponding Connection bound to the current thread, for example when using
DataSourceTransactionManager
. Will bind a Connection to the thread if transaction synchronization is active (for example, if in a JTA transaction).Directly accessed by
TransactionAwareDataSourceProxy
.- Parameters:
dataSource
- the DataSource to obtain Connections from- Returns:
- a JDBC Connection from the given DataSource
- Throws:
SQLException
- if thrown by JDBC methods- See Also:
-
prepareConnectionForTransaction
@Nullable public static Integer prepareConnectionForTransaction(Connection con, @Nullable TransactionDefinition definition) throws SQLException Prepare the given Connection with the given transaction semantics.- Parameters:
con
- the Connection to preparedefinition
- the transaction definition to apply- Returns:
- the previous isolation level, if any
- Throws:
SQLException
- if thrown by JDBC methods- See Also:
-
resetConnectionAfterTransaction
public static void resetConnectionAfterTransaction(Connection con, @Nullable Integer previousIsolationLevel, boolean resetReadOnly) Reset the given Connection after a transaction, regarding read-only flag and isolation level.- Parameters:
con
- the Connection to resetpreviousIsolationLevel
- the isolation level to restore, if anyresetReadOnly
- whether to reset the connection's read-only flag- Since:
- 5.2.1
- See Also:
-
resetConnectionAfterTransaction
@Deprecated public static void resetConnectionAfterTransaction(Connection con, @Nullable Integer previousIsolationLevel) Deprecated.as of 5.1.11, in favor ofresetConnectionAfterTransaction(Connection, Integer, boolean)
Reset the given Connection after a transaction, regarding read-only flag and isolation level.- Parameters:
con
- the Connection to resetpreviousIsolationLevel
- the isolation level to restore, if any
-
isConnectionTransactional
Determine whether the given JDBC Connection is transactional, that is, bound to the current thread by Spring's transaction facilities.- Parameters:
con
- the Connection to checkdataSource
- the DataSource that the Connection was obtained from (may benull
)- Returns:
- whether the Connection is transactional
- See Also:
-
applyTransactionTimeout
public static void applyTransactionTimeout(Statement stmt, @Nullable DataSource dataSource) throws SQLException Apply the current transaction timeout, if any, to the given JDBC Statement object.- Parameters:
stmt
- the JDBC Statement objectdataSource
- the DataSource that the Connection was obtained from- Throws:
SQLException
- if thrown by JDBC methods- See Also:
-
applyTimeout
public static void applyTimeout(Statement stmt, @Nullable DataSource dataSource, int timeout) throws SQLException Apply the specified timeout - overridden by the current transaction timeout, if any - to the given JDBC Statement object.- Parameters:
stmt
- the JDBC Statement objectdataSource
- the DataSource that the Connection was obtained fromtimeout
- the timeout to apply (or 0 for no timeout outside of a transaction)- Throws:
SQLException
- if thrown by JDBC methods- See Also:
-
releaseConnection
Close the given Connection, obtained from the given DataSource, if it is not managed externally (that is, not bound to the thread).- Parameters:
con
- the Connection to close if necessary (if this isnull
, the call will be ignored)dataSource
- the DataSource that the Connection was obtained from (may benull
)- See Also:
-
doReleaseConnection
public static void doReleaseConnection(@Nullable Connection con, @Nullable DataSource dataSource) throws SQLException Actually close the given Connection, obtained from the given DataSource. Same asreleaseConnection(java.sql.Connection, javax.sql.DataSource)
, but throwing the original SQLException.Directly accessed by
TransactionAwareDataSourceProxy
.- Parameters:
con
- the Connection to close if necessary (if this isnull
, the call will be ignored)dataSource
- the DataSource that the Connection was obtained from (may benull
)- Throws:
SQLException
- if thrown by JDBC methods- See Also:
-
doCloseConnection
public static void doCloseConnection(Connection con, @Nullable DataSource dataSource) throws SQLException Close the Connection, unless aSmartDataSource
doesn't want us to.- Parameters:
con
- the Connection to close if necessarydataSource
- the DataSource that the Connection was obtained from- Throws:
SQLException
- if thrown by JDBC methods- See Also:
-
getTargetConnection
Return the innermost target Connection of the given Connection. If the given Connection is a proxy, it will be unwrapped until a non-proxy Connection is found. Otherwise, the passed-in Connection will be returned as-is.- Parameters:
con
- the Connection proxy to unwrap- Returns:
- the innermost target Connection, or the passed-in one if no proxy
- See Also:
-
resetConnectionAfterTransaction(Connection, Integer, boolean)