第一种:
@Test
void testConn01() {
// 创建驱动
try {
// Driver driver = new com.mysql.jdbc.Driver();
// 耦合度太高
Driver driver = new com.mysql.cj.jdbc.Driver();
//2.提供url,指明具体操作的数据
String url = "jdbc:mysql://localhost:3306/db_web";
//3.提供Properties的对象,指明用户名和密码
Properties info = new Properties();
info.setProperty("user", "root");
info.setProperty("password", "root");
// 如果数据库已经是8.0,需要的驱动也必须是8.0以上
// 如果使用了8.0的驱动,则必须设置时区参数
info.setProperty("serverTimezone", "Asia/Shanghai");
//4.调用driver的connect(),获取连接
Connection conn = driver.connect(url, info);
System.out.println(conn);
} catch (SQLException e) {
e.printStackTrace();
}
}
第二种:
@Test
void testConn02() {
// 创建驱动
try {
Driver driver = null;