黑猴子的家:JDBC -> 获取mysql连接的几种方式

1、方式一

package com.yinggu.demo1;
import java.io.FileInputStream;
import java.sql.Connection;
import java.sql.DriverManager;
import java.util.Properties;
import org.junit.Test;

 * 此类用于演示获取连接的几种方式
 * 
 * @author:黑猴子的家
 * @博客 :https://www.jianshu.com/u/37fd8e2dff4c
 * 
 * 连接url的格式: jdbc:mysql://主机名:端口号/库名 
 * 注意:如果是本机并且为默认端口号,则可以直接写成:
 *         jdbc:mysql:///库名

public class TestConnection2 {
    @Test
    public void test1() throws Exception {
        // 1.加载驱动
        Class.forName("com.mysql.jdbc.Driver");
        // 2.获取连接
        Connection connection = DriverManager.getConnection(
                                "jdbc:mysql:///girls?user=root&password=root");
        System.out.println(connection);
    }
}

2、方式二

@Test
public void test2() throws Exception {
    // 1.加载驱动
    Class.forName("com.mysql.jdbc.Driver");
    // 2.获取连接
    Connection connection = DriverManager.getConnection(
                            "jdbc:mysql:///girls", "root", "root");
    System.out.println(connection);
}

3、方式三

@Test
public void test3() throws Exception { 
    // 1.加载驱动
    Class.forName("com.mysql.jdbc.Driver");
    // 2.获取连接
    Properties info = new Properties();
    info.load(new FileInputStream("src/db.properties"));
    Connection connection = DriverManager.getConnection(
                                "jdbc:mysql:///girls", info);
    System.out.println(connection);
}

4、方式四

@Test
public void test4() throws Exception {
    Properties info = new Properties();
    info.load(new FileInputStream("src/db.properties"));
    String driverClass = info.getProperty("driverClass");
    String url = info.getProperty("url");
    String user = info.getProperty("user");
    String password = info.getProperty("password");
    // 1.加载驱动
    Class.forName(driverClass);
    // 2.获取连接
    Connection connection = DriverManager.getConnection(url, user, password);
    System.out.println(connection);
}

5、创建db.properties 文件

https://www.jianshu.com/p/f963e40856af
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值