编写一个获取和释放数据库连接的工具类


package com.aaa.jdbc;

import java.io.InputStream;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.Properties;

/**
 * 工具类 获取数据库连接 释放资源等
 *
 * @author tuxianchao
 *
 */
public class JDBCTools {
    /**
     * 获取数据库连接
     *
     * @return
     * @throws Exception
     */
    public static Connection getConnection() throws Exception {

          // 1. 准备连接数据库的 4 个字符串.
          String driverClass = null;
          String url = null;
          String user = null;
          String password = null;

          // 1). 创建 Properties 对象
          Properties properties = new Properties();

          // 2). 获取 jdbc.properties 对应的输入流
          InputStream in = getClass().getClassLoader().getResourceAsStream("jdbc.properties");

          // 3). 加载 2) 对应的输入流
          properties.load(in);

          // 4). 具体决定 user, password 等4 个字符串.
          driverClass = properties.getProperty("driver");
          url = properties.getProperty("url");
          user = properties.getProperty("user");
          password = properties.getProperty("password");

          // 2. 加载数据库驱动程序(对应的 Driver 实现类中有注册驱动的静态代码块.)
          Class.forName(driverClass);

          // 3. 通过 DriverManager 的 getConnection() 方法获取数据库连接.
          return DriverManager.getConnection(url, user, password);
       
    }

    /**
     * 释放数据库资源
     *
     * @param statement
     * @param connection
     * @param resultSet
     */
    public static void release(Statement statement, Connection connection, ResultSet resultSet) {
        if (resultSet != null) {//防止空指针异常
            try {
                resultSet.close();
            } catch (SQLException e) {
                e.printStackTrace();
            }
        }

        if (statement != null) {
            try {
                statement.close();
            } catch (SQLException e) {
                e.printStackTrace();
            }
        }

        if (connection != null) {
            try {
                connection.close();
            } catch (SQLException e) {
                e.printStackTrace();
            }
        }
    }
   }

jdbc.properties


driver=com.mysql.jdbc.Driver
url=jdbc:mysql://localhost:3306/testjdbc
user=root
password=root


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值