Java常用工具类之DBUtil.java(数据库操作辅助类)

package com.qushida.util;

import java.beans.BeanInfo;
import java.beans.Introspector;
import java.beans.PropertyDescriptor;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.ResultSetMetaData;
import java.sql.SQLException;
import java.sql.Statement;
import java.text.DateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;

import javax.sql.DataSource;

import org.apache.log4j.Logger;

import com.mchange.v2.c3p0.ComboPooledDataSource;

/**
 * 数据库操作辅助类
 * 
 * @version 3.0
 * @author xiaocaiji
 */
public class DBUtil {
    // 设置数据源(使用C3P0数据库连接池)
    private static DataSource dataSource = new ComboPooledDataSource("mysql-config");
    private static Logger logger = Logger.getLogger("DBUtil");
    private static ThreadLocal<Connection> tl = new ThreadLocal<Connection>();

    public static DataSource getDataSource() {
        return dataSource;
    }
    
    // private static Connection conn;
    /**
     * 该语句必须是 SQL INSERT、UPDATE 、DELETE 语句
     * 
     * @param sql
     * @return
     * @throws Exception
     */
    public int execute(String sql) throws Exception {
        return execute(sql, new Object[] {});
    }

    /**
     * insert语句使用,返回新增数据的主键。
     * 
     * @param sql
     * @return
     */
    public Object execute(String sql, Object[] paramList, boolean falg) throws Exception {
        Connection conn = null;
        Object o = new Object();
        try {
            conn = getConnection();
            o = this.execute(conn, sql, paramList, falg);
        } catch (Exception e) {
            logger.info(e.getMessage());
            throw new Exception(e);
        } finally {
            closeConn(conn);
        }
        return o;
    }

    /**
     * insert语句使用,返回新增数据的主键。
     * 
     * @param sql
     * @return
     */
    public Object execute(Connection conn, String sql, Object[] paramList, boolean falg) throws Exception {
        if (sql == null || sql.trim().equals("")) {
            logger.info("parameter is valid!");
        }

        PreparedStatement pstmt = conn.prepareStatement(sql, Statement.RETURN_GENERATED_KEYS);
        Object id = null;
        try {
            // 指定返回生成的主键
            // 如果使用静态的SQL,则不需要动态插入参数
            setPreparedStatementParam(pstmt, paramList);
            if (pstmt == null) {
                return -1;
            }
            pstmt.executeUpdate();
            // 检索由于执行此 Statement 对象而创建的所有自动生成的键
            ResultSet rs = pstmt.getGeneratedKeys();
            if (rs.next()) {
                id = rs.getObject(1);
                System.out.println("数据主键地址:" + id);
            }
        } catch (Exception e) {
            logger.info(e.getMessage());
            throw new Exception(e);
        } finally {
            closeStatement(pstmt);
        }

        return id;
    }

    /**
     * 该语句必须是 SQL INSERT、UPDATE 、DELETE 语句 insert into table values(?,?,?,?)
     * 
     * @param sql
     * @param paramList:参数,与SQL语句中的占位符一
     * @return
     * @throws Exception
     */
    public int execute(String sql, Object[] paramList) throws Exception {
        if (sql == null || sql.trim().equals("")) {
            logger.info("parameter is valid!");
        }

        Connection conn = null;
        PreparedStatement pstmt = null;
        int result = 0;
        try {
            conn = getConnection();
            pstmt = DBUtil.getPreparedStatement(conn, sql);
            setPreparedStatementParam(pstmt, paramList);
            if (pstmt == null) {
                return -1;
            }
            result = pstmt.executeUpdate();
        } catch (Exception e) {
            logger.info(e.getMessage());
            throw new Exception(e);
        } finally {
            closeStatement(pstmt);
            closeConn(conn);
        }

        return result;
    }

    /**
     * 事物处理类
     * 
     * @param connection
     * @param sql
     * @param paramList:参数,与SQL语句中的占位符一
     * @return
     * @throws Exception
     */
    public int execute(Connection conn, String sql, Object[] paramList) throws Exception {
        if (sql == null || sql.trim().equals("")) {
            logger.info("parameter is valid!");
        }

        PreparedStatement pstmt = null;
        int result = 0;
        try {
            pstmt = DBUtil.getPreparedStatement(conn, sql);
            setPreparedStatementParam(pstmt, paramList);
            if (pstmt == null) {
                return -1;
            }
            result = pstmt.executeUpdate();
        } catch (Exception e) {
            logger.info(e.getMessage());
            throw new Exception(e);
        } finally {
            closeStatement(pstmt);
        }

        return result;
    }

    /**
     * 获取实体类型的方法,type为实体类类型。
     * 
     * @param type
     * @param sql
     * @param paramList
     * @return
     * @throws Exception
     */
    public Object getObject(Class<?> type, String sql, Object[] paramList) throws Exception {
        BeanInfo beanInfo = Introspector.getBeanInfo(type);
        Object obj = type.newInstance();
        PropertyDescriptor[] propertyDescriptors = beanInfo.getPropertyDescriptors();
        Map map = getObject(sql, paramList);
        if (map != null) {
            for (int i = 0; i < propertyDescriptors.length; i++) {
                PropertyDescriptor descriptor = propertyDescriptors[i];
                String propertyName = descriptor.getName();
                if (map != null && map.containsKey(propertyName)) {
                    Object value = map.get(propertyName);
                    Object[] args = new Object[1];
                    args[0] = value;
                    try {
                        descriptor.getWriteMethod().invoke(obj, args);
                    } catch (Exception e) {
                        logger.info("检测一下Table列,和实体类属性:" + propertyName + "" + "是否一致,并且是否是" + value.getClass() + "类型");
                        throw new Exception(
                                "检测一下Table列,和实体类属性:" + propertyName + "" + "是否一致,并且是否是" + value.getClass() + "类型");
                    }
                }
            }
        } else {
            obj = null;
        }
        return obj;
    }

    public List<Class<?>> getQueryList(Class<?> type, String sql, Object[] paramList) throws Exception {
        BeanInfo beanInfo = Introspector.getBeanInfo(type);

        PropertyDescriptor[] propertyDescriptors = beanInfo.getPropertyDescriptors();
        List<Map<String, Object>> list = getQueryList(sql, paramList);
        List beanList = new ArrayList();

        for (Iterator iterator = list.iterator(); iterator.hasNext();) {
            Map<String, Object> map = (Map<String, Object>) iterator.next();
            Object obj = type.newInstance();
            for (int i = 0; i < propertyDescriptors.length; i++) {
                PropertyDescriptor descriptor = propertyDescriptors[i];
                String propertyName = descriptor.getName();
                if (map != null && map.containsKey(propertyName)) {
                    Object value = map.get(propertyName);
                    Object[] args = new Object[1];
                    args[0] = value;
                    try {
                        descriptor.getWriteMethod().invoke(obj, args);
                    } catch (Exception e) {
                        logger.info("检测一下Table列,和实体类属性:" + propertyName + "" + "是否一致,并且是否是" + value.getClass() + "类型");
                        throw new Exception(
                                "检测一下Table列,和实体类属性:" + propertyName + "" + "是否一致,并且是否是" + value.getClass() + "类型");
                    }
                }
            }
            beanList.add(obj);
        }

        return beanList;
    }

    /**
     * 将查询数据库获得的结果集转换为Map对象
     * 
     * @param sql:查询
     * @return
     */
    public List<Map<String, Object>> getQueryList(String sql) throws Exception {
        return getQueryList(sql, new Object[] {});
    }

    /**
     * 将查询数据库获得的结果集转换为Map对象
     * 
     * @param sql:查询
     * @param paramList:参数
     * @return
     */
    public List<Map<String, Object>> getQueryList(String sql, Object[] paramList) throws Exception {
        if (sql == null || sql.trim().equals("")) {
            logger.info("parameter is valid!");
            return null;
        }

        Connection conn = null;
        PreparedStatement pstmt = null;
        ResultSet rs = null;
        List<Map<String, Object>> queryList = null;
        try {
            conn = getConnection();
            pstmt = DBUtil.getPreparedStatement(conn, sql);
            setPreparedStatementParam(pstmt, paramList);
            if (pstmt == null) {
                return null;
            }
            rs = getResultSet(pstmt);
            queryList = getQueryList(rs);
        } catch (RuntimeException e) {
            logger.info(e.getMessage());
            System.out.println("parameter is valid!");
            throw new Exception(e);
        } finally {
            closeResultSet(rs);
            closeStatement(pstmt);
            closeConn(conn);
        }
        return queryList;
    }

    /**
     * 分页查询
     * 
     * @param sql
     * @param params
     *            查询条件参数
     * @param page
     *            分页信息
     * @return
     */
    public Page getQueryPage(Class<?> type, String sql, Object[] params, Page page) {
        int totalPages = 0; // 页数
        Long rows = 0l;// 数据记录数

        // 分页工具类
        List<Class<?>> list = null;
        Map countMap = null;
        try {
            list = this.getQueryList(type,
                    sql + " limit " + (page.getCurPage() - 1) * page.getPageNumber() + " , " + page.getPageNumber(),
                    params);
            countMap = this.getObject(" " + "select count(*) c from (" + sql + ") as t ", params);
            rows = (Long) countMap.get("c");
            // 求余数
            if (rows % page.getPageNumber() == 0) {
                totalPages = rows.intValue() / page.getPageNumber();
            } else {
                totalPages = rows.intValue() / page.getPageNumber() + 1;
            }

            page.setRows(rows.intValue());
            page.setData(list);
            page.setTotalPage(totalPages);
        } catch (Exception e) {
            e.printStackTrace();
        }
        return page;
    }

    /**
     * 分页查询
     * 
     * @param sql
     * @param params
     *            查询条件参数
     * @param page
     *            分页信息
     * @return
     */
    public Page getQueryPage(String sql, Object[] params, Page page) {
        int totalPages = 0; // 页数
        Long rows = 0l;// 数据记录数

        // 分页工具类
        List<Map<String, Object>> list = null;
        Map countMap = null;
        try {
            list = this.getQueryList(
                    sql + " limit " + (page.getCurPage() - 1) * page.getPageNumber() + " , " + page.getPageNumber(),
                    params);
            countMap = this.getObject(" " + "select count(*) c from (" + sql + ") as t ", params);
            rows = (Long) countMap.get("c");
            // 求余数
            if (rows % page.getPageNumber() == 0) {
                totalPages = rows.intValue() / page.getPageNumber();
            } else {
                totalPages = rows.intValue() / page.getPageNumber() + 1;
            }

            page.setRows(rows.intValue());
            page.setData(list);
            page.setTotalPage(totalPages);
        } catch (Exception e) {
            e.printStackTrace();
        }
        return page;
    }

    /**
     * 将查询数据库获得的结果集转换为Map对象
     * 
     * @param sql:查询
     * @return
     */
    public Map<String, Object> getObject(String sql) throws Exception {
        return getObject(sql, new Object[] {});
    }

    /**
     * 将查询数据库获得的结果集转换为Map对象
     * 
     * @param sql:查询
     * @param paramList:参数
     * @return
     */
    public Map<String, Object> getObject(String sql, Object[] paramList) throws Exception {
        if (sql == null || sql.trim().equals("")) {
            logger.info("parameter is valid!");
            return null;
        }

        Connection conn = null;
        PreparedStatement pstmt = null;
        ResultSet rs = null;
        Map map = new HashMap<String, Object>();
        try {
            conn = getConnection();
            pstmt = DBUtil.getPreparedStatement(conn, sql);
            setPreparedStatementParam(pstmt, paramList);
            if (pstmt == null) {
                return null;
            }
            rs = getResultSet(pstmt);
            List list = getQueryList(rs);
            if (list.isEmpty()) {
                return null;
            }
            map = (HashMap) list.get(0);
        } catch (RuntimeException e) {
            logger.info(e.getMessage());
            logger.info("parameter is valid!");
            throw new Exception(e);
        } finally {
            closeResultSet(rs);
            closeStatement(pstmt);
            closeConn(conn);
        }
        return map;
    }

    private static PreparedStatement getPreparedStatement(Connection conn, String sql) throws Exception {
        if (conn == null || sql == null || sql.trim().equals("")) {
            return null;
        }
        PreparedStatement pstmt = conn.prepareStatement(sql.trim());
        return pstmt;
    }

    private void setPreparedStatementParam(PreparedStatement pstmt, Object[] paramList) throws Exception {
        if (pstmt == null || paramList == null) {
            return;
        }
        DateFormat df = DateFormat.getDateTimeInstance();
        for (int i = 0; i < paramList.length; i++) {
            // -
            if (paramList[i] instanceof Integer) {
                int paramValue = ((Integer) paramList[i]).intValue();
                pstmt.setInt(i + 1, paramValue);
            } else if (paramList[i] instanceof Float) {
                float paramValue = ((Float) paramList[i]).floatValue();
                pstmt.setFloat(i + 1, paramValue);
            } else if (paramList[i] instanceof Double) {
                double paramValue = ((Double) paramList[i]).doubleValue();
                pstmt.setDouble(i + 1, paramValue);
            } else if (paramList[i] instanceof Date) {
                pstmt.setString(i + 1, df.format((Date) paramList[i]));
            } else if (paramList[i] instanceof Long) {
                long paramValue = ((Long) paramList[i]).longValue();
                pstmt.setLong(i + 1, paramValue);
            } else if (paramList[i] instanceof String) {
                pstmt.setString(i + 1, (String) paramList[i]);
            }
            // = pstmt.setObject(i + 1, paramList[i]);
        }
        return;
    }

    /**
     * 获得数据库查询结果集
     * 
     * @param pstmt
     * @return
     * @throws Exception
     */
    private ResultSet getResultSet(PreparedStatement pstmt) throws Exception {
        if (pstmt == null) {
            return null;
        }
        ResultSet rs = pstmt.executeQuery();
        return rs;
    }

    /**
     * @param rs
     * @return
     * @throws Exception
     */
    private List<Map<String, Object>> getQueryList(ResultSet rs) throws Exception {
        if (rs == null) {
            return null;
        }
        ResultSetMetaData rsMetaData = rs.getMetaData();
        int columnCount = rsMetaData.getColumnCount();
        List<Map<String, Object>> dataList = new ArrayList<Map<String, Object>>();
        while (rs.next()) {
            Map<String, Object> dataMap = new HashMap<String, Object>();
            for (int i = 0; i < columnCount; i++) {
                dataMap.put(rsMetaData.getColumnLabel(i + 1), rs.getObject(i + 1));
            }
            dataList.add(dataMap);
        }
        return dataList;
    }

    /**
     * 关闭数据库
     * 
     * @param conn
     */
    private void closeConn(Connection conn) {
        if (conn == null) {
            return;
        }
        try {
            conn.close();
        } catch (SQLException e) {
            logger.info(e.getMessage());
        }
    }

    /**
     * 关闭
     * 
     * @param stmt
     */
    private void closeStatement(Statement stmt) {
        if (stmt == null) {
            return;
        }
        try {
            stmt.close();
        } catch (SQLException e) {
            logger.info(e.getMessage());
        }
    }

    /**
     * 关闭
     * 
     * @param rs
     */
    private void closeResultSet(ResultSet rs) {
        if (rs == null) {
            return;
        }
        try {
            rs.close();
        } catch (SQLException e) {
            logger.info(e.getMessage());
        }
    }

    /**
     * 可以选择三个不同的数据库连接
     * 
     * @param JDBC
     *            ,JNDI(依赖web容器 DBCP
     * @return
     * @throws Exception
     */
    public static Connection getConnection() throws Exception {
        Connection conn = tl.get();
        if (conn == null) {
            conn = dataSource.getConnection();
        }
        return conn;
    }

    /*********** 事务处理方法 ************/
    /**
     * 开启事务
     */
    public static void beginTranscation() throws Exception {
        Connection conn = tl.get();
        if (conn != null) {
            logger.info("事务已经开始!");
            throw new SQLException("事务已经开始!");
        }
        conn = dataSource.getConnection();
        conn.setAutoCommit(false);
        tl.set(conn);
    }

    /**
     * 结束事务
     * 
     * @throws SQLException
     */
    public static void endTranscation() throws SQLException {
        Connection conn = tl.get();
        if (conn == null) {
            logger.info("当前没有事务!");
            throw new SQLException("当前没有事务!");
        }
        conn.commit();
    }

    /**
     * 回滚
     * 
     * @throws SQLException
     */
    public static void rollback() throws SQLException {
        Connection conn = tl.get();
        if (conn == null) {
            logger.info("当前没有事务,不能回滚!");
            throw new SQLException("当前没有事务,不能回滚!");
        }
        conn.rollback();
    }

    /**
     * 事务处理,关闭资源
     * 
     * @throws SQLException
     */
    public static void closeConn() throws SQLException {
        Connection conn = tl.get();
        if (conn == null) {
            logger.info("当前没有连接,不需要关闭Connection。");
            throw new SQLException("当前没有连接,不需要关闭Connection。");
        }
        conn.close();
        tl.remove();
    }

}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,258评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,335评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,225评论 0 353
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,126评论 1 292
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,140评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,098评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,018评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,857评论 0 273
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,298评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,518评论 2 332
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,678评论 1 348
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,400评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,993评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,638评论 0 22
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,801评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,661评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,558评论 2 352

推荐阅读更多精彩内容

  • 择业嫁娶都是人生中的大事,相当于十字路口,古有“男怕入错行,女怕嫁错郎”的古训。记得在一次培训上,培训专家阚...
    Sunny萍七阅读 211评论 0 0
  • 深蓝的水飘满水母粉色金色浅蓝深蓝 膨胀收缩向上向下 我看着它们打开了伞又合上伞
    西市阅读 230评论 0 1
  • 8 奥金尼kt ,,,ybhbubjnf,,ybbfc,,,,v
    言者_bf48阅读 42评论 0 0
  • 感恩做人,敬业做事 王明娟 感恩的心感谢有你 伴我一生让我有勇气做我自己 感恩的心感谢命运 花开花落我一样会珍惜 ...
    菡萏_dfef王明娟阅读 1,156评论 0 9
  • 方式一. lsof -P -i:端口号 如: 方式二. netstat -tunlp |grep 端口号 如:
    码农梦醒阅读 249评论 0 0