首页 > 其他分享 >创建连接的5种方式

创建连接的5种方式

时间:2023-01-29 09:33:14浏览次数:33  
标签:jdbc 方式 url 创建 Driver properties connection mysql 连接

/**
 * 连接jdbc的5种方式
 */

public class jdbc02 {
    // 方式1:
    @SuppressWarnings({"all"})
    @Test
    public void test1() throws Exception{
        // 1.获得驱动
        Driver driver = new Driver();
        // 2.获得连接
        String url = "jdbc:mysql://localhost:3306/hspdb02";
        Properties properties = new Properties();
        properties.setProperty("user","root");
        properties.setProperty("password","zw20010108");
        Connection connect = driver.connect(url, properties);
        System.out.println(connect);
        connect.close();
    }

    // 方式2:
    @SuppressWarnings({"all"})
    public void test2() throws Exception{
        // 1.获得驱动
        Class<?> aClass = Class.forName("com.mysql.cj.jdbc.Driver");
        Driver driver = (Driver) aClass.newInstance();
        // 2.获得连接
        String url = "jdbc:mysql://localhost:3306/hspdb02";
        Properties properties = new Properties();
        properties.setProperty("user","root");
        properties.setProperty("password","zw20010108");
        Connection connect = driver.connect(url, properties);
        System.out.println(connect);
        connect.close();
    }

    // 方式3:
    @Test
    public void test3() throws Exception{
        Class<?> aClass = Class.forName("com.mysql.cj.jdbc.Driver");
        Driver driver = (Driver) aClass.newInstance();
        String url = "jdbc:mysql://localhost:3306/hspdb02";
        String user = "root";
        String password = "zw20010108";
        DriverManager.registerDriver(driver);
        Connection connection = DriverManager.getConnection(url, user, password);
        System.out.println(connection);
        connection.close();
    }

    // 方式4:
    @SuppressWarnings({"all"})
    @Test
    public void test4() throws Exception{
        /*
        static {
            try {
                DriverManager.registerDriver(new Driver());
            } catch (SQLException var1) {
                throw new RuntimeException("Can't register driver!");
            }
        }
         */
        Class.forName("com.mysql.cj.jdbc.Driver");
        String url = "jdbc:mysql://localhost:3306/hspdb02";
        String user = "root";
        String password = "zw20010108";
        Connection connection = DriverManager.getConnection(url, user, password);
        System.out.println(connection);
        connection.close();
    }

    // 方式5
    @Test
    public void test5() throws Exception{
        Properties properties = new Properties();
        properties.load(new FileReader("src\\mysql.properties"));
        Class.forName(properties.getProperty("Driver"));
        Connection connection = DriverManager.getConnection(
                properties.getProperty("url"),
                properties.getProperty("user"),
                properties.getProperty("pwd"));
        System.out.println(connection);
        connection.close();
    }
}

在方式5中的配置文件如下:

 mysql.properties:

Driver=com.mysql.cj.jdbc.Driver
url=jdbc:mysql://localhost:3306/hspdb02
user=root
pwd=*****

 

标签:jdbc,方式,url,创建,Driver,properties,connection,mysql,连接
From: https://www.cnblogs.com/zwgitOne123/p/17071748.html

相关文章

  • 使用宝塔面板安装MInIO单机版 - docker方式安装
    在宝塔面板-->软件商店,分别搜索 Docker管理器3.9.2、进程守护管理器2.4 并安装 打开LinuxShell终端,输入如下命令行(单磁盘挂载)mkdir-p~/minio/datadocker......
  • Vue3用vue ui创建vue2项目时报错
    问题:选中以Vue2默认模板创建时候,下方和控制台出现以下报错Failedtogetresponsefromhttps://registry.yarnpkg.com/vue-cli-version-marker解决:查看C盘下的.vuerc......
  • 华为C8650USB连接win10无法访问内部储存空间
    C8650,MIUI-破落MIUI-2.3.7无tf卡时显示内部储存150MB不可用,显示SD卡18MB可卸载猜测是分区问题计算机管理-设备-AndroidAdapter显示此设备配置不正确(code1)磁盘空间不足......
  • war包和jar包项目在服务器上的部署方式
    一:ssm项目构建的war包,一般都是将其复制到服务器中Tomcat/webapps目录下,会自动解压,同时需要把该项目用到的前端依赖及页面重新复制一份到该目录下。 二:SpringBoot构建的......
  • win远程连接传递文件
    win用scp指令也可以远程查看传递文件,但无疑比较麻烦。通过下面方法以win的文件夹方式打开远程文件夹。win+r打开命令栏输入\\+远程地址例如远程地址为10.18.11.127时,......
  • ISM Web组态软件的组态应用开发之创建页面
    提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档文章目录​​前言​​​​一、创建电脑端页面​​​​二、设置首页​​​​2.手机端页面​​​​2.装饰页面​......
  • 创建一个模板解析的功能函数
    第一步:生成目录结构config_file|_templates||_nginx.conf.j2|_nginx.conf第二步:写一个用于解析模板的函数fromjinja2importPackageLoader,Environmentdefj2(......
  • 解决多线程中线程安全的方式一
    /***方式一:同步代码块*synchronized(同步监视器){*//需要被同步的代码**}*说明:1.操作共享数据的代码,即为需要被同步的代码,如对总票数的减减、判......
  • vs2022创建c语言的dll项目
    1.创建项目  2.创建完成不需要删除自动生成的文件3.修改项目属性右键单击--->c/c++--->常规----->附件包含目录------>这里不用 c/c++----->预处理器------->......
  • 本地无法连接虚拟机的mysql的问题
    1、服务的问题使用命令ps-ef|grepmysql    看是否有mysql服务,如果没有则启动服务: servicemysqldstart2、可能是防火墙的问题使用......