jdbc动态加载,jdbc加载多个不同版本驱动jar包

项目需要连接不同版本的数据库,大多数情况下,最新版本的驱动包会兼容老版本的数据库,但仍存在新版的驱动连接老版本数据库出现不兼容的情况。
需要在同一个运行环境中同时加载多个不同版本的驱动对象。

注意类加载器的parent需要设为null,否则它会将加载类通过双亲委派机制委派给AppClassLoader,如果AppClassLoader中已经存在同限定名的类(比如pom文件依赖),这里UrlClassLoader中加载的类会被忽略。

传统方式

            String url = "jdbc:oracle:thin:@//192.168.111.201:1521/xxx";
            Class.forName("oracle.jdbc.OracleDriver");
            connection = DriverManager.getConnection(url, "用户名", "密码");
            

mysql动态加载驱动

public void driverTest() throws Exception {
        String userName = "username";
        String password = "password";
        String url = "jdbc:mysql://localhost:3306/schema";
        String className = "com.mysql.jdbc.Driver";
        String jarFilePath = "jar:file:/home/xxx/libs/mysql-connector-java-8.0.29.jar!/";
		
        URLClassLoader loader = new URLClassLoader(new URL[]{new URL(jarFilePath)}, null);
        Driver driver = (Driver) Class.forName(className, true, loader).newInstance();
        Connection connection = null;

        Properties info = new Properties();
        info.put("user", userName);
        info.put("password", password);
        connection = driver.connect(url, info);

        System.out.println(connection.getMetaData().getDatabaseProductVersion());
        System.out.println(connection.getMetaData().getDriverVersion());
    }

oracle动态加载驱动

方式一:绝对路径,/home/oracle/osyn/ojdbc8.jar

            String url = "jdbc:oracle:thin:@//192.168.10.201:1521/xxx";
            String className = "oracle.jdbc.OracleDriver";
            String jarFilePath = "jar:file:/home/oracle/osyn/ojdbc8.jar!/";
            System.out.println("jarFilePath=" + jarFilePath);
            //注意类加载器的parent需要设为null,否则它会将加载类通过双亲委派机制委派给AppClassLoader,如果AppClassLoader中已经存在同限定名的类(比如pom文件依赖),这里UrlClassLoader中加载的类会被忽略。
            URLClassLoader loader = new URLClassLoader(new URL[]{new URL(jarFilePath)}, null);
            Driver driver = (Driver) Class.forName(className, true, loader).newInstance();
            Properties info = new Properties();
            info.put("user", "用户名");
            info.put("password", "密码");
            connection = driver.connect(url, info);
            System.out.println(connection.getMetaData().getDatabaseProductVersion());
            System.out.println(connection.getMetaData().getDriverVersion());

方式二:相对路径

将ojdbc8.jar放到  resources/jdbc/ojdbc8.jar

            String url = "jdbc:oracle:thin:@//192.168.10.201:1521/xxx";
            String className = "oracle.jdbc.OracleDriver";
            ClassPathResource resource = new ClassPathResource("jdbc/ojdbc8.jar");
            String jarFilePath = resource.getURL() + "!/";
            System.out.println(jarFilePath);
            System.out.println("jarFilePath=" + jarFilePath);
            //注意类加载器的parent需要设为null,否则它会将加载类通过双亲委派机制委派给AppClassLoader,如果AppClassLoader中已经存在同限定名的类(比如pom文件依赖),这里UrlClassLoader中加载的类会被忽略。
            URLClassLoader loader = new URLClassLoader(new URL[]{new URL(jarFilePath)}, null);
            Driver driver = (Driver) Class.forName(className, true, loader).newInstance();
            Properties info = new Properties();
            info.put("user", "用户名");
            info.put("password", "密码");
            connection = driver.connect(url, info);
            System.out.println(connection.getMetaData().getDatabaseProductVersion());
            System.out.println(connection.getMetaData().getDriverVersion());

使用了一段时间,报错:Caused by: java.lang.OutOfMemoryError: Compressed class space

原因是获取连接,我封装成了一个方法,但是最后并没有 loader.close(); 每次获取连接都加载了一次jdbc的驱动,所以驱动加载最好放在静态代码块中。

将ojdbc8.jar放到  resources/jdbc/ojdbc8.jar

package com.study.service;

@Service
public class PullTaskService {
    private static final Logger log = LoggerFactory.getLogger(PullTaskService.class);

    private static Driver driver = null;

    @Value("${o.url}")
    private String url;
    @Value("${o.username}")
    private String username;
    @Value("${o.password}")
    private String password;

 
    /**
     * 加载驱动
     * @author lhs
     * @date 2024/3/20 16:49
     */
    static {
        try {
            // 对方数据库版本为Oracle 12.2 需要使用ojdbc8版本驱动
            ClassPathResource resource = new ClassPathResource("jdbc/ojdbc8.jar");
            String jarFilePath = resource.getURL() + "!/";
            // 注意类加载器的parent需要设为null,否则它会将加载类通过双亲委派机制委派给AppClassLoader,
            // 如果AppClassLoader中已经存在同限定名的类(比如pom文件依赖),这里UrlClassLoader中加载的类会被忽略。
            URLClassLoader loader = new URLClassLoader(new URL[]{new URL(jarFilePath)}, null);
            driver = (Driver) Class.forName("oracle.jdbc.OracleDriver", true, loader).newInstance();
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
    }

    /**
     * 获取jdbc连接
     * 对方数据库版本为Oracle 12.2 需要使用ojdbc8版本驱动
     * @author lhs
     * @date 2023/12/6 15:15
     */
    public Connection getConnection() {
        Connection connection = null;
        try {
            Properties info = new Properties();
            info.put("user", username);
            info.put("password", password);
            connection = driver.connect(url, info);
            log.info("JDBC驱动版本:" + connection.getMetaData().getDriverVersion());
            return connection;
        } catch (Exception e) {
            log.error(e.getMessage(), e);
            // 出现异常时关闭连接
            if (connection != null) {
                try {
                    connection.close();
                } catch (SQLException e1) {
                    log.error(e1.getMessage(), e1);
                }
            }
        }
        return null;
    }

	private List<Map<String, Object>> get() {
        Connection connection = null;
        try {
            connection = getConnection();
            // 查询语句
            String sql = "SELECT * FROM tableName";
            // 查询
            PreparedStatement statement = connection.prepareStatement(sql);
            ResultSet set = statement.executeQuery();
            
            set.close();
            statement.close();
            return list;
        } catch (Exception e) {
            log.error(e.getMessage(), e);
        } finally {
            try {
                if (connection != null) {
                    connection.close();
                }
            } catch (SQLException e) {
                log.error(e.getMessage(), e);
            }
        }
        return null;
    }

}

参考:

jdbc加载多个不同版本驱动jar包_java 同时连接不同版本mysql-CSDN博客

  • 0
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值