Introduction and methods of DataSourceUitls
Introduction to DataSourceUitls
The DataSourceUitls class is located under the org.springframework.jdbc.datasource package. It provides many static methods to obtain JDBC Connection from a javax.sql.DataSource, and provides Spring transaction management. support.
Inside the JdbcTemplate class, DataSourceUtils is used multiple times. In fact, we can also use DataSourceUitls directly in the code to operate Jdbc.
DataSourceUitls gets Connection
getConnection method
Internal implementation
public static Connection getConnection(DataSource dataSource) throws CannotGetJdbcConnectionException { try { return doGetConnection(dataSource); } catch (SQLException ex) { throw new CannotGetJdbcConnectionException("Failed to obtain JDBC Connection", ex); } catch (IllegalStateException ex) { throw new CannotGetJdbcConnectionException("Failed to obtain JDBC Connection: " + ex.getMessage()); } }
It can be seen that by passing in a specified DataSource, you can get a Connection, get The process is implemented by the doGetConnection method. If SQLException and IllegalStateException are thrown, wrap them into CannotGetJdbcConnectionException. In fact, only SQLException and IllegalStateException can be thrown. By looking at the source code of CannotGetJdbcConnectionException, we can find that CannotGetJdbcConnectionException is actually a subclass of DataAccessException. Therefore, it can be said that getConnection will uniformly encapsulate the thrown exception into Spring's DataAccessException.
doGetConnection method
Internal implementation
public static Connection doGetConnection(DataSource dataSource) throws SQLException { Assert.notNull(dataSource, "No DataSource specified"); ConnectionHolder conHolder = (ConnectionHolder) TransactionSynchronizationManager.getResource(dataSource); if (conHolder != null && (conHolder.hasConnection() || conHolder.isSynchronizedWithTransaction())) { conHolder.requested(); if (!conHolder.hasConnection()) { logger.debug("Fetching resumed JDBC Connection from DataSource"); conHolder.setConnection(fetchConnection(dataSource)); } return conHolder.getConnection(); } // Else we either got no holder or an empty thread-bound holder here. logger.debug("Fetching JDBC Connection from DataSource"); Connection con = fetchConnection(dataSource); if (TransactionSynchronizationManager.isSynchronizationActive()) { logger.debug("Registering transaction synchronization for JDBC Connection"); // Use same Connection for further JDBC actions within the transaction. // Thread-bound object will get removed by synchronization at transaction completion. ConnectionHolder holderToUse = conHolder; if (holderToUse == null) { holderToUse = new ConnectionHolder(con); } else { holderToUse.setConnection(con); } holderToUse.requested(); TransactionSynchronizationManager.registerSynchronization( new ConnectionSynchronization(holderToUse, dataSource)); holderToUse.setSynchronizedWithTransaction(true); if (holderToUse != conHolder) { TransactionSynchronizationManager.bindResource(dataSource, holderToUse); } } return con; }
The doGetConnection method is the core method used to actually obtain a Connection. It can be concluded from the source code that if there is no Connection bound to the current thread, a new Connection will be created. If the transaction synchronization of the current thread is active, then Spring transaction management support will be added to the newly created Connection; if If a corresponding Connection exists for the current thread, then there is a current transaction management allocation.
fetchConnection method
fetchConnection is a private method that is not open to the public. It actually performs a simple function: create a new Connection from the current DastaSource. If the new connection fails, an IllegalStateException is thrown. , prompting that a new Connection cannot be obtained.
DataSourceUitls releases Connection
releaseConnection method
Internal implementation
public static void releaseConnection(@Nullable Connection con, @Nullable DataSource dataSource) { try { doReleaseConnection(con, dataSource); } catch (SQLException ex) { logger.debug("Could not close JDBC Connection", ex); } catch (Throwable ex) { logger.debug("Unexpected exception on closing JDBC Connection", ex); } }
The specific implementation of the releaseConnection method is handled by doReleaseConnection. If an exception is thrown, it will only be debugged in the log and will not be thrown externally. Both parameters of this method are NULL.
If con is NULL, this call is ignored; while the other parameter is allowed to be NULL.
doReleaseConnection method
Internal implementation
public static void doReleaseConnection(@Nullable Connection con, @Nullable DataSource dataSource) throws SQLException { if (con == null) { return; } if (dataSource != null) { ConnectionHolder conHolder = (ConnectionHolder) TransactionSynchronizationManager.getResource(dataSource); if (conHolder != null && connectionEquals(conHolder, con)) { // It's the transactional Connection: Don't close it. conHolder.released(); return; } } logger.debug("Returning JDBC Connection to DataSource"); doCloseConnection(con, dataSource); }
The doReleaseConnection method is the method that actually releases the Connection. Compared with the releaseConnection method, it completes the processing of the two parameters passed in. The checksum throws a lower level exception. When dataSource is not NULL, release the current connection retained by this ConnectionHolder so that the current Connection can be reused, which is very helpful for improving the performance of Jdbc operations. If dataSource is null, choose to close the connection directly.
DataSourceUitls closes Connection
doCloseConnection method
Internal implementation
public static void doCloseConnection(Connection con, @Nullable DataSource dataSource) throws SQLException { if (!(dataSource instanceof SmartDataSource) || ((SmartDataSource) dataSource).shouldClose(con)) { con.close(); } }
In the doReleaseConnection method, we have learned that doCloseConnection will be executed when the datasource is NULL method. In fact, the Connection is actually closed only when the dataSource does not implement the org.springframework.jdbc.datasource.SmartDataSource interface or when the dataSource implements the org.springframework.jdbc.datasource.SmartDataSource interface and is allowed to be closed.
org.springframework.jdbc.datasource.SmartDataSource interface is an extension of javax.sql.DataSource interface, returning the Jdbc connection in an unpackaged form. Classes that implement this interface can query whether the Connection should be closed after completing the operation. Such checks are automatically performed in Srping and DataSourceUitls and JdbcTemplate.
The above is the detailed content of Introduction and methods of DataSourceUitls. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



How to turn off the ads recommended by 360 Browser? I believe that many users are using 360 Browser, but this browser sometimes pops up advertisements, which makes many users very distressed. Let this site carefully introduce to users how to Turn off the ads recommended by 360 Browser on your computer. How to turn off the ads recommended by 360 Browser on your computer? Method 1: 1. Open 360 Safe Browser. 2. Find the "three horizontal bars" logo in the upper right corner and click [Settings]. 3. Find [Lab] in the taskbar on the left side of the pop-up interface, and check [Enable "360 Hotspot Information" function]. Method 2: 1. First double-click

Kuaishou is an excellent video player. The password-free payment function in Kuaishou is very familiar to everyone. It can be of great help to us in daily life, especially when purchasing the goods we need on the platform. Okay, let’s go and pay. Now we have to cancel it. How can we cancel it? How can we effectively cancel the password-free payment function? The method of canceling password-free payment is very simple. The specific operation methods have been sorted out. Let’s go through it together. Let’s take a look at the entire guide on this site, I hope it can help everyone. Tutorial on how to close password-free payment in Kuaishou 1. Open the Kuaishou app and click on the three horizontal lines in the upper left corner. 2. Click Kuaishou Store. 3. In the options bar above, find password-free payment and click on it. 4. Click to support

Sina News software provides a lot of news headline information, which is basically pushed by the official platform. The content of each news article is authentic. You can swipe up and down to search and browse with one click, making the overall reading atmosphere more comfortable. Enter your mobile phone number to log in online. News channels in different fields are open. The 24-hour updates are not repeated. There is no shortage of domestic, foreign and local current affairs news. Swipe up and down to select one-click browsing. The news content is all If you are interested, you can also turn off the news express function, so that it will not be affected. You can open it at any time and preview the massive hot news headlines. Now the editor will provide details to Sina News users online. Operation steps of express delivery function. Find Sina News and click on the lower right corner

In the Windows 11 operating system, the Security Center is an important function that helps users monitor the system security status, defend against malware, and protect personal privacy. However, sometimes users may need to temporarily turn off Security Center, such as when installing certain software or performing system tuning. This article will introduce in detail how to turn off the Windows 11 Security Center to help you operate the system correctly and safely. 1. How to turn off Windows 11 Security Center In Windows 11, turning off the Security Center does not

As one of the operating systems with the largest number of users in the world, Windows operating system has always been favored by users. However, when using Windows systems, users may encounter many security risks, such as virus attacks, malware and other threats. In order to strengthen system security, Windows systems have many built-in security protection mechanisms, one of which is the real-time protection function of Windows Security Center. Today, we will introduce in detail how to turn off real-time protection in Windows Security Center. First, let's

Windows 11 is the latest operating system version launched by Microsoft. Compared with previous versions, Windows 11 has stricter management and monitoring of system security. One of the important functions is the security center. Security Center can help users manage and monitor the security status of the system to ensure that the system is protected from malware and other security threats. Although Security Center is important for protecting system security, sometimes users may want to turn off Security Center due to personal needs or other reasons. This article will introduce how to use W

1. Click Sound and Vibration in the phone settings. 2. Click Dolby Atmos. 3. Turn off the switch behind Dolby Atmos.

How to turn off the use now, pay later function on Pinduoduo? Pinduoduo is a very smart software that allows users to buy things online and have them delivered to their door. There are many types of products on this software. Users can choose the products they need to buy. In order to allow To make it more convenient for users to use this software, a use now, pay later function has been launched. Many users want to cancel this function. Below, the editor has compiled the method of canceling the use now, pay later function for your reference. How to turn off the use now, pay later function on Pinduoduo. Turn it off on Pinduoduo. 1. After entering Pinduoduo’s personal homepage, click “Settings”. 2. In the settings, click "Use now, pay later settings". 3.
