• 万能JDBC工具类【DBUtil 】


    package com.jdbc;
    import java.sql.*;
    import java.util.*;
    import javax.sql.DataSource;
    import org.apache.commons.dbutils.QueryRunner;
    import org.apache.commons.dbutils.handlers.*;
    import com.mchange.v2.c3p0.ComboPooledDataSource;
    
    public class DBUtil {
    	public static void main(String[] args) {
    	
    	//构造方法私有化 防止别人以后欠欠的new本类的对象
    	private DBUtil() {}
    
    	private static  DataSource dataSource;
    	//要在静态代码块中加载驱动类
    	static {
    		dataSource=new ComboPooledDataSource("mysql");
    	}
    	//得到连接
    	public static Connection getConn() {
    		Connection conn=null;
    		try {
    			conn=dataSource.getConnection();
    		}catch(Exception ex) {
    			ex.printStackTrace();
    		}
    		
    		return conn;
    	}
    
    	//清理资源
    	public static void close(ResultSet rs, Statement stm,Connection conn) {
    		if(rs!=null) {
    			try {
    				rs.close();
    			} catch (SQLException e) {
    				e.printStackTrace();
    			}
    		}
    		if(stm!=null) {
    			try {
    				stm.close();
    			} catch (SQLException e) {
    				e.printStackTrace();
    			}
    		}
    		if(conn!=null) {
    			try {
    				conn.close();
    			} catch (SQLException e) {
    				e.printStackTrace();
    			}
    		}
    	}
    	
    	//清理资源
    		public static void close(Connection conn) {
    			if(conn!=null) {
    				try {
    					conn.close();
    				} catch (SQLException e) {
    					e.printStackTrace();
    				}
    			}
    		}
    
    	// 万能更新(可以进行添加,更新,删除三种操作)
    	public static int update(String sql, Object... params) {
    		int result = 0;
    		QueryRunner qr = new QueryRunner(); // 是一个线程不安全的类
    		Connection conn=getConn();
    		try {
    			result = qr.update(conn, sql, params);
    		} catch (SQLException e) {
    			e.printStackTrace();
    			throw new RuntimeException(e);
    		}finally{
    			close(conn);
    		}
    		
    		return result;
    	}
    
    	// 添加数据,并将生成的自增ID返回
    	public static int addWithId(String sql, Object... params) {
    		int autoId = 0;
    		Connection conn = null;
    		PreparedStatement stm = null;
    		ResultSet rs = null;
    		try {
    			conn = getConn();
    			stm = conn.prepareStatement(sql,
    					PreparedStatement.RETURN_GENERATED_KEYS);
    			for (int i = 0; i < params.length; i++) {
    				stm.setObject(i + 1, params[i]);
    			}
    
    			// 执行添加操作
    			stm.executeUpdate();
    
    			// 取出生成的自增ID
    			ResultSet rsKey = stm.getGeneratedKeys();
    			rsKey.next();
    			autoId = rsKey.getInt(1);
    
    		} catch (Exception e) {
    			e.printStackTrace();
    			throw new RuntimeException(e);
    		} finally {
    			close(rs, stm, conn);
    		}
    		return autoId;
    	}
    
    	// 查询出一个单个的对象
    	public static <T> T getSingleObj(String sql, Class<T> clazz,
    			Object... params) {
    		QueryRunner qr = new QueryRunner();
    		T result = null;
    		Connection conn=getConn();
    		try {
    			result = qr.query(conn, sql, new BeanHandler<T>(clazz),
    					params);
    		} catch (Exception e) {
    			e.printStackTrace();
    			throw new RuntimeException(e);
    		}finally{
    			close(conn);
    		}
    
    		return result;
    	}
    	
    
    	// 查询出对象列表(以ArrayList的方式返回),注意,如果没有查询到数据,该方法返回一个空列表,而不是null
    	public static <T> List<T> getList(String sql, Class<T> clazz,
    			Object... params) {
    		List<T> list = new ArrayList<T>();
    		QueryRunner qr = new QueryRunner();
    		Connection conn =getConn();
    		
    		try {
    			list = qr.query(conn, sql, new BeanListHandler<T>(clazz), params);
    		} catch (Exception e) {
    			e.printStackTrace();
    			throw new RuntimeException(e);
    		} finally{
    			close(conn);
    		}
    
    		return list;
    	}
    
    	// 返回Map集合(该方法只将一条数据返回为Map集合,key为字段名称,value为字段值)
    	public static Map<String, Object> getMap(String sql, Object... params) {
    		Map<String, Object> m = null;
    		QueryRunner qr = new QueryRunner();
    		Connection conn =getConn();
    		
    		try {
    			m = qr.query(conn, sql, new MapHandler(), params);
    		} catch (Exception e) {
    			e.printStackTrace();
    			throw new RuntimeException(e);
    		}finally{
    			close(conn);
    		}
    
    		return m;
    	}
    
    	// 返回一个List集合,其中每条数据都被封装成了一个Map集合,
    	public static List<Map<String, Object>> getMapList(String sql,
    			Object... params) {
    		List<Map<String, Object>> mapList = new ArrayList<Map<String, Object>>();
    		QueryRunner qr = new QueryRunner();
    		Connection conn =getConn();
    
    		try {
    			mapList = qr.query(conn, sql, new MapListHandler(),
    					params);
    
    		} catch (Exception e) {
    			e.printStackTrace();
    			throw new RuntimeException(e);
    		}finally{
    			close(conn);
    		}
    
    		return mapList;
    	}
    
    	// 返回单行单个数据,该方法可以用来查询记录数(这时请使用Long型进行接收),单个字段值等数据
    	public static <T> T getScalar(String sql, Object... obj) {
    		T result = null;
    		QueryRunner qr = new QueryRunner();
    		Connection conn = getConn();
    		try {
    			result = qr.query(conn, sql, new ScalarHandler<T>(1), obj);
    		} catch (Exception ex) {
    			ex.printStackTrace();
    			throw new RuntimeException(ex);
    		} finally {
    			close(conn);
    		}
    
    		return result;
    	}
    }
    

      

  • 相关阅读:
    HttpContext.GetOwinContext().Authentication 报错 解决办法
    owin Claims-based认证登录实现
    angularjs初识ng-app、ng-model、ng-repeat指令
    SpringBoot配置slf4j logback-spring.xml日志
    idea时间注释模版
    oracel截取字符串
    win10官网下载地址
    使用HttpWebRequest实现basic身份认证
    mybatis常用jdbcType数据类型与mysql的类型对照
    修改IntelliJ IDEA 默认配置路径
  • 原文地址:https://www.cnblogs.com/IanIan/p/14906186.html
Copyright © 2020-2023  润新知