地表最强jdbcutils

地表最强jdbcutils

一、maven坐标

 		 <dependency>
            <groupId>org.apache.logging.log4jgroupId>
            <artifactId>log4j-coreartifactId>
            <version>2.17.1version> 
        dependency>
        <dependency>
            <groupId>com.alibabagroupId>
            <artifactId>druidartifactId>
            <version>1.2.6version> 
        dependency>

二、log4j2.xml 文件


<Configuration status="WARN">
    <Appenders>
        <Console name="Console" target="SYSTEM_OUT">
            <PatternLayout pattern="%d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n"/>
        Console>
    Appenders>
    <Loggers>
        <Root level="info">
            <AppenderRef ref="Console"/>
        Root>
    Loggers>
Configuration>

三、jdbcutils代码


import com.alibaba.druid.pool.DruidDataSource;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;

import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;

public class JDBCUtils {

    private static final String JDBC_URL = "jdbc:mysql://localhost:3306/your_database";
    private static final String JDBC_USER = "your_username";
    private static final String JDBC_PASSWORD = "your_password";

    // 使用Druid数据源
    private static DruidDataSource dataSource = new DruidDataSource();

    // 使用ThreadLocal来确保每个线程有自己的连接
    private static ThreadLocal connectionThreadLocal = ThreadLocal.withInitial(() -> {
        try {
            return dataSource.getConnection();
        } catch (SQLException e) {
            throw new RuntimeException("Failed to get a database connection.", e);
        }
    });

    // 获取日志记录器
    private static final Logger logger = LogManager.getLogger(JDBCUtils.class);

    // 获取数据库连接
    public static Connection getConnection() {
        return connectionThreadLocal.get();
    }

    // 开启事务
    public static void beginTransaction() {
        Connection connection = getConnection();
        try {
            connection.setAutoCommit(false); // 设置手动提交
        } catch (SQLException e) {
            throw new RuntimeException("Failed to begin transaction.", e);
        }
    }

    // 提交事务
    public static void commitTransaction() {
        Connection connection = getConnection();
        try {
            connection.commit();
        } catch (SQLException e) {
            throw new RuntimeException("Failed to commit transaction.", e);
        }
    }

    // 回滚事务
    public static void rollbackTransaction() {
        Connection connection = getConnection();
        try {
            connection.rollback();
        } catch (SQLException e) {
            throw new RuntimeException("Failed to rollback transaction.", e);
        }
    }

    // 关闭连接
    public static void closeConnection() {
        Connection connection = connectionThreadLocal.get();
        if (connection != null) {
            try {
                connection.close();
                connectionThreadLocal.remove();
            } catch (SQLException e) {
                throw new RuntimeException("Failed to close connection.", e);
            }
        }
    }

    // 执行查询操作
    public static ResultSet executeQuery(String sql, Object... params) throws SQLException {
        Connection connection = getConnection();
        PreparedStatement preparedStatement = connection.prepareStatement(sql);
        for (int i = 0; i < params.length; i++) {
            preparedStatement.setObject(i + 1, params[i]);
        }

        // 记录日志
        logger.info("Executing SQL query: {}", sql);

        return preparedStatement.executeQuery();
    }

    // 执行更新操作
    public static int executeUpdate(String sql, Object... params) throws SQLException {
        Connection connection = getConnection();
        PreparedStatement preparedStatement = connection.prepareStatement(sql);
        for (int i = 0; i < params.length; i++) {
            preparedStatement.setObject(i + 1, params[i]);
        }

        // 记录日志
        logger.info("Executing SQL update: {}", sql);

        return preparedStatement.executeUpdate();
    }
}

这段代码所涉及的知识点:

  1. JDBC(Java Database Connectivity):JDBC是Java中用于与关系型数据库进行交互的标准API。在这段代码中,使用了JDBC来执行数据库操作。
  2. Druid数据源DruidDataSource 是阿里巴巴开发的一个高性能数据库连接池。在这段代码中,使用了Druid数据源来管理数据库连接。
  3. ThreadLocalThreadLocal 是Java中的一个类,用于在多线程环境中为每个线程维护一个独立的变量副本。在这段代码中,使用ThreadLocal 来确保每个线程都有自己的数据库连接,以避免线程之间的混淆。
  4. 日志记录:代码使用Log4j 2作为日志记录框架,以记录数据库操作的详细信息。日志记录是一种重要的开发和调试工具,可以用于跟踪应用程序的行为。
  5. 数据库连接管理:代码包括获取数据库连接、开启事务、提交事务、回滚事务以及关闭数据库连接的方法,以确保数据库连接的正确使用和管理。
  6. 参数化查询:通过使用 PreparedStatement 来执行数据库查询和更新操作,以防止SQL注入攻击。参数化查询是一种防止恶意SQL注入的重要技术。
  7. 异常处理:代码中使用了异常处理来捕获和处理可能出现的SQL异常,以确保应用程序在出现问题时能够适当地响应。
  8. 配置信息:代码中包含了数据库连接的配置信息,包括数据库URL、用户名和密码。这些信息通常应该从配置文件中读取,而不是硬编码在代码中。

你可能感兴趣的:(单元测试,java)