|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.springframework.jdbc.datasource.DataSourceUtils
Helper class that provides static methods to obtain connections from JNDI and close connections if necessary. Has support for thread-bound connections, e.g. for use with DataSourceTransactionManager.
Note: The getDataSourceFromJndi
methods are targetted at
applications that do not use a Spring BeanFactory. With the latter, it is
preferable to preconfigure your beans or even JdbcTemplate instances in the
factory: JndiObjectFactoryBean can be used to fetch a DataSource from JNDI
and pass the DataSource bean reference to other beans. Switching to another
DataSource is just a matter of configuration then: For example, you can
replace the definition of the JndiObjectFactoryBean with a local DataSource
(like a Commons DBCP BasicDataSource).
getDataSourceFromJndi(java.lang.String)
,
JndiObjectFactoryBean
,
getConnection(javax.sql.DataSource)
,
DataSourceTransactionManager
Constructor Summary | |
DataSourceUtils()
|
Method Summary | |
static void |
applyTransactionTimeout(Statement stmt,
DataSource dataSource)
Apply the current transaction timeout, if any, to the given JDBC Statement object. |
static void |
closeConnectionIfNecessary(Connection con,
DataSource dataSource)
Close the given Connection if necessary, i.e. if it is not bound to the thread and it is not created by a SmartDataSource returning shouldClose=false. |
protected static void |
doCloseConnectionIfNecessary(Connection con,
DataSource dataSource)
Actually close a JDBC Connection for the given DataSource. |
protected static Connection |
doGetConnection(DataSource dataSource,
boolean allowSynchronization)
Actually get a JDBC Connection for the given DataSource. |
static Connection |
getConnection(DataSource dataSource)
Get a Connection from the given DataSource. |
static Connection |
getConnection(DataSource dataSource,
boolean allowSynchronization)
Get a Connection from the given DataSource. |
static DataSource |
getDataSourceFromJndi(String jndiName)
Deprecated. in favor of managing a DataSource via dependency injection, i.e. using a JndiObjectFactoryBean for a JNDI DataSource and pass a bean reference to a setDataSource(DataSource) method or the like |
static DataSource |
getDataSourceFromJndi(String jndiName,
boolean resourceRef)
Deprecated. in favor of managing a DataSource via dependency injection, i.e. using a JndiObjectFactoryBean for a JNDI DataSource and pass a bean reference to a setDataSource(DataSource) method or the like |
static Integer |
prepareConnectionForTransaction(Connection con,
TransactionDefinition definition)
Prepare the given Connection with the given transaction semantics. |
static void |
resetConnectionAfterTransaction(Connection con,
Integer previousIsolationLevel)
Reset the given Connection after a transaction, regarding read-only flag and isolation level. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public DataSourceUtils()
Method Detail |
public static DataSource getDataSourceFromJndi(String jndiName) throws CannotGetJdbcConnectionException
Use getDataSourceFromJndi(jndiName,false) in case of a custom JNDI name.
jndiName
- jndiName of the DataSource
CannotGetJdbcConnectionException
- if the data source cannot be locatedgetDataSourceFromJndi(String, boolean)
,
JndiObjectFactoryBean
public static DataSource getDataSourceFromJndi(String jndiName, boolean resourceRef) throws CannotGetJdbcConnectionException
jndiName
- jndiName of the DataSourceresourceRef
- if the lookup occurs in a J2EE container, i.e. if the prefix
"java:comp/env/" needs to be added if the JNDI name doesn't already contain it.
CannotGetJdbcConnectionException
- if the data source cannot be locatedJndiObjectFactoryBean
public static Connection getConnection(DataSource dataSource) throws CannotGetJdbcConnectionException
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 (e.g. if in a JTA transaction).
dataSource
- DataSource to get Connection from
CannotGetJdbcConnectionException
- if the attempt to get a Connection failedTransactionSynchronizationManager
,
DataSourceTransactionManager
public static Connection getConnection(DataSource dataSource, boolean allowSynchronization) throws CannotGetJdbcConnectionException
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 (e.g. if in a JTA transaction).
dataSource
- DataSource to get Connection fromallowSynchronization
- if a new JDBC Connection is supposed to be
registered with transaction synchronization (if synchronization is active).
This will always be true for typical data access code.
CannotGetJdbcConnectionException
- if the attempt to get a Connection faileddoGetConnection(javax.sql.DataSource, boolean)
,
TransactionSynchronizationManager
,
DataSourceTransactionManager
protected static Connection doGetConnection(DataSource dataSource, boolean allowSynchronization) throws SQLException
Directly accessed by TransactionAwareDataSourceProxy.
dataSource
- DataSource to get Connection fromallowSynchronization
- if a new JDBC Connection is supposed to be
registered with transaction synchronization (if synchronization is active).
This will always be true for typical data access code.
SQLException
- if thrown by JDBC methodsgetConnection(DataSource, boolean)
,
TransactionAwareDataSourceProxy
public static Integer prepareConnectionForTransaction(Connection con, TransactionDefinition definition) throws SQLException
con
- the Connection to preparedefinition
- the transaction definition to apply
SQLException
- if thrown by JDBC methodsresetConnectionAfterTransaction(java.sql.Connection, java.lang.Integer)
public static void resetConnectionAfterTransaction(Connection con, Integer previousIsolationLevel)
con
- the Connection to resetpreviousIsolationLevel
- the isolation level to restore, if anyprepareConnectionForTransaction(java.sql.Connection, org.springframework.transaction.TransactionDefinition)
public static void applyTransactionTimeout(Statement stmt, DataSource dataSource) throws SQLException
stmt
- the JDBC Statement objectdataSource
- DataSource that the Connection came from
SQLException
Statement.setQueryTimeout(int)
public static void closeConnectionIfNecessary(Connection con, DataSource dataSource)
con
- Connection to close if necessary
(if this is null, the call will be ignored)dataSource
- DataSource that the Connection came fromSmartDataSource.shouldClose(java.sql.Connection)
protected static void doCloseConnectionIfNecessary(Connection con, DataSource dataSource) throws SQLException
Directly accessed by TransactionAwareDataSourceProxy.
con
- Connection to close if necessary
(if this is null, the call will be ignored)dataSource
- DataSource that the Connection came from
SQLException
- if thrown by JDBC methodscloseConnectionIfNecessary(java.sql.Connection, javax.sql.DataSource)
,
TransactionAwareDataSourceProxy
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |