zoukankan      html  css  js  c++  java
  • Apache的dbutils的架构图

    按照视频的方法做了一次封装,使用C3P0作为数据源,并对事务进行了支持。

    TxQueryRunner的源代码

    package org.apache.commons.dbutils;
    
    import java.sql.Connection;
    import java.sql.SQLException;
    import java.util.List;
    /**
     * The class is to provide <code>Connection</code> and is responsible
     * for closing it.
     * @author ygh
     * 2017年1月17日
     */
    public class TxQueryRunner extends QueryRunner {
    
        @Override
        public int[] batch(String sql, Object[][] params) throws SQLException {
            Connection conn = JdbcUtils.getConnection();
            int[] result = super.batch(conn, sql, params);
            JdbcUtils.realeaseConnection(conn);
            return result;
        }
    
        @Override
        public <T> T query(String sql, ResultSetHandler<T> rsh, Object... params) throws SQLException {
            Connection conn = JdbcUtils.getConnection();
            T result = super.query(conn, sql, rsh, params);
            JdbcUtils.realeaseConnection(conn);
            return result;
        }
    
        @Override
        public <T> T query(String sql, ResultSetHandler<T> rsh) throws SQLException {
            Connection conn = JdbcUtils.getConnection();
            T result = super.query(conn,sql, rsh);
            JdbcUtils.realeaseConnection(conn);
            return result;
        }
    
        @Override
        public int update(String sql) throws SQLException {
            Connection conn = JdbcUtils.getConnection();
            int result = super.update(conn,sql);
            JdbcUtils.realeaseConnection(conn);
            return result;
        }
    
        @Override
        public int update(String sql, Object param) throws SQLException {
            Connection conn = JdbcUtils.getConnection();
            int result = super.update(conn,sql, param);
            JdbcUtils.realeaseConnection(conn);
            return result;
        }
    
        @Override
        public int update(String sql, Object... params) throws SQLException {
            Connection conn = JdbcUtils.getConnection();
            int result = super.update(conn,sql, params);
            JdbcUtils.realeaseConnection(conn);
            return result;
        }
    
        @Override
        public <T> T insert(String sql, ResultSetHandler<T> rsh) throws SQLException {
            Connection conn = JdbcUtils.getConnection();
            T result = super.insert(conn,sql, rsh);
            JdbcUtils.realeaseConnection(conn);
            return result;
        }
    
        @Override
        public <T> T insert(String sql, ResultSetHandler<T> rsh, Object... params) throws SQLException {
            Connection conn = JdbcUtils.getConnection();
            T result = super.insert(conn,sql, rsh, params);
            JdbcUtils.realeaseConnection(conn);
            return result;
        }
    
        @Override
        public <T> T insertBatch(String sql, ResultSetHandler<T> rsh, Object[][] params) throws SQLException {
            Connection conn = JdbcUtils.getConnection();
            T result = super.insertBatch(conn,sql, rsh, params);
            JdbcUtils.realeaseConnection(conn);
            return result;
        }
    
        @Override
        public int execute(String sql, Object... params) throws SQLException {
            Connection conn = JdbcUtils.getConnection();
            int result = super.execute(conn,sql, params);
            JdbcUtils.realeaseConnection(conn);
            return result;
        }
    
        @Override
        public <T> List<T> execute(String sql, ResultSetHandler<T> rsh, Object... params) throws SQLException {
            Connection conn = JdbcUtils.getConnection();
            List<T> result = super.execute(conn,sql, rsh, params);
            JdbcUtils.realeaseConnection(conn);
            return result;
        }
    
    }

    JDBC工具类的源代码

    package org.apache.commons.dbutils;
    
    import java.sql.Connection;
    import java.sql.SQLException;
    
    import javax.sql.DataSource;
    
    import com.mchange.v2.c3p0.ComboPooledDataSource;
    
    /**
     * This is utility class to provide DataSource from C3p0 and is responsible for transaction.
     * 
     * @author ygh 2017年1月5日
     */
    public class JdbcUtils {
    
        /**
         * The parameter used to stored <code>DataSource</code>
         */
        private static DataSource dataSource;
    
        /**
         * The parameter used to stored ThreadLocal
         */
        private static ThreadLocal<Connection> tl = new ThreadLocal<Connection>();
    
        /**
         * Providing DataSource from C3p0.Subclasses can override to provide more
         * <code>DataSource</code> sources.
         * 
         * @return The DataSource provided by C3p0
         */
        protected static DataSource getDataSource() {
            dataSource = new ComboPooledDataSource();
            return dataSource;
        }
    
        /**
         * If ThreadLocal has be put a <code>Connection</code>, get it and return, otherwise call
         * <code>DataSource.getConnection()</code>
         * 
         * @return The <code>Connection</code>
         * @throws SQLException If a database access error occurs.
         */
        public static Connection getConnection() throws SQLException {
            if (tl.get() == null) {
                return getDataSource().getConnection();
            }
            return tl.get();
        }
    
        /**
         * Start transaction.
         * 
         * @throws SQLException If ThreadLocak has <code>Connection</code> indicates transaction has
         *         been started.
         */
        public static void beginTransaction() throws SQLException {
            Connection connection = tl.get();
            if (connection != null) {
                throw new SQLException("A transaction " + tl.get().getClass().getName()
                        + "has been started,don't start again ");
            }
            connection = getDataSource().getConnection();
            connection.setAutoCommit(false);
            tl.set(connection);
        }
    
        /**
         * Commit transaction
         * @throws SQLException If <code>Connection</code> is null, indicating no transactions
         */
        public static void commitTransaction() throws SQLException {
            Connection connection = tl.get();
            if (connection == null) {
                throw new SQLException("没有事务不能提交");
            }
            connection = tl.get();
            connection.commit();
            connection.close();
            tl.remove();
        }
    
        /**
         * Rollback transaction
         * @throws SQLException If <code>Connection</code> is null, indicating no transactions
         */
        public static void rollback() throws SQLException {
            Connection connection = tl.get();
            if (connection == null) {
                throw new SQLException("没有事务不能回滚");
            }
            connection = tl.get();
            connection.rollback();
            connection.close();
            tl.remove();
        }
    
        /**
         * Release connection if it don't join transaction.
         * @param connection The <code>Connection</code> need to release 
         * @throws SQLException If a database access error occurs
         */
        public static void realeaseConnection(Connection connection) throws SQLException {
            Connection con = tl.get();// 获取当前线程的事务连接
            if (connection != con) {// 如果参数连接,与当前事务连接不同,说明这个连接不是当前事务,可以关闭!
                if (connection != null && !connection.isClosed()) {// 如果参数连接没有关闭,关闭之!
                    connection.close();
                }
            }
        }
    }

    更多的代码请见:https://github.com/yghjava/study_apache_dbutils

  • 相关阅读:
    Makefile目标汇总和变量的高级用法
    make命令详解
    再议HTML Clipboard Format
    编写一个Open Live Writer的VSCode代码插件
    win7安装ps cc 2019切片闪退
    redis cluster 数据迁移
    linux服务器两块网卡路由优先级冲突 Metric值(转)
    电梯怎么测,附常见的测试用例
    vue中watch属性深度监听,监听数组或多维数组下层
    前端JS base64与图片互转
  • 原文地址:https://www.cnblogs.com/yghjava/p/6219249.html
Copyright © 2011-2022 走看看