Table of Contents
Introduction to DataSourceUitls
DataSourceUitls gets Connection
getConnection method
Internal implementation
doGetConnection method
fetchConnection method
DataSourceUitls releases Connection
releaseConnection method
doReleaseConnection method
DataSourceUitls closes Connection
doCloseConnection method
Home Java javaTutorial Introduction and methods of DataSourceUitls

Introduction and methods of DataSourceUitls

Jul 26, 2017 pm 05:01 PM
connection closure

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());
        }
    }
Copy after login

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;
    }
Copy after login

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);
        }
    }
Copy after login

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);
    }
Copy after login

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();
        }
    }
Copy after login

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!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to turn off the ads recommended by 360 Browser? How to turn off ads recommended by 360 Browser on PC? How to turn off the ads recommended by 360 Browser? How to turn off ads recommended by 360 Browser on PC? Mar 14, 2024 am 09:16 AM

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

How to close password-free payment in Kuaishou Kuaishou tutorial on how to close password-free payment How to close password-free payment in Kuaishou Kuaishou tutorial on how to close password-free payment Mar 23, 2024 pm 09:21 PM

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

How to turn off Sina News Express? How to turn off the express function? How to turn off Sina News Express? How to turn off the express function? Mar 12, 2024 pm 09:46 PM

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

Detailed explanation of how to turn off Windows 11 Security Center Detailed explanation of how to turn off Windows 11 Security Center Mar 27, 2024 pm 03:27 PM

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

Detailed explanation of how to turn off real-time protection in Windows Security Center Detailed explanation of how to turn off real-time protection in Windows Security Center Mar 27, 2024 pm 02:30 PM

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

How to turn off Security Center in Windows 11 How to turn off Security Center in Windows 11 Mar 28, 2024 am 10:21 AM

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

Where to turn off Dolby Atmos in opporeno5_How to disable Dolby Atmos in opporeno5 Where to turn off Dolby Atmos in opporeno5_How to disable Dolby Atmos in opporeno5 Mar 25, 2024 pm 04:41 PM

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 How to turn off the use now, pay later function on Pinduoduo How to turn off the use now, pay later function on Pinduoduo How to turn off the use now, pay later function on Pinduoduo Mar 12, 2024 pm 04:07 PM

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.

See all articles