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

  • 相关阅读:
    Android 可拖拽的GridView效果实现, 长按可拖拽和item实时交换
    安卓开发中非常炫的效果集合
    Android开源项目分类汇总
    Linux vim 底下显示行号
    backslash and newline separated by space
    LinuxC语言读取文件,分割字符串,存入链表,放入另一个文件
    Linux C 知识 char型数字转换为int型 int型 转换为Char
    Linux 底下使用C 对文件进行遍历
    Xshell 中文乱码
    Linux底下的第一个C程序
  • 原文地址:https://www.cnblogs.com/yghjava/p/6219249.html
Copyright © 2011-2022 走看看