三、数据库连接五种方式举例:
方式一
@Test
public void getConnection1() {
//1.方式一:传统的
try {
//1.提供java.sql.Driver接口实现类的对象
Driver driver=new Driver();
//2.提供url,指明具体操作的数据
String url="jdbc:mysql://localhost:3306/admin";
//3.提供Properties的对象,指明用户名和密码
Properties info=new Properties();
info.setProperty("user", "root");
info.setProperty("password", "123456");
//4.调用driver的connect(),获取连接
Connection connect = driver.connect(url, info);
System.out.println(connect);
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
说明:上述代码中显式出现了第三方数据库的API
方式二
@Test
public void getConnetion2() {
try {
Class clzz=Class.forName("com.mysql.jdbc.Driver");
//1.实例化驱动对象
Driver driver = (Driver)clzz.newInstance();
//2.提供url,指明具体操作的数据
String url="jdbc:mysql://localhost:3306/admin";
//3.提供Properties的对象,指明用户名和密码
Properties info=new Properties();
info.setProperty("user", "root");
info.setProperty("password", "123456");
//4.调用driver的connect(),获取连接
Connection connect = driver.connect(url, info);
System.out.println(connect);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
说明:相较于方式一,这里使用反射实例化Driver,不在代码中体现第三方数据库的API。体现了面向接口编程思想。
方式三:
使用DriverManager代替Driver进行统一管理,实现数据库的连接
@Test
public void testConnection3() {
try {
//1.数据库连接的4个基本要素:
String url = "jdbc:mysql://localhost:3306/test";
String user = "root";
String password = "abc123";
String driverName = "com.mysql.jdbc.Driver";
//2.实例化Driver
Class clazz = Class.forName(driverName);
Driver driver = (Driver) clazz.newInstance();
//3.注册驱动
DriverManager.registerDriver(driver);
//4.获取连接
Connection conn = DriverManager.getConnection(url, user, password);
System.out.println(conn);
} catch (Exception e) {
e.printStackTrace();
}
}
说明:使用DriverManager实现数据库的连接。体会获取连接必要的4个基本要素。
方式四:
不必显式的注册驱动了,因为在DriverManager的源码中已经存在静态代码块,实现了驱动的注册
@Test
public void testConnection4() {
try {
//1.数据库连接的4个基本要素:
String url = "jdbc:mysql://localhost:3306/test";
String user = "root";
String password = "abc123";
String driverName = "com.mysql.jdbc.Driver";
//2.加载驱动 (①实例化Driver ②注册驱动)
Class.forName(driverName);
//Driver driver = (Driver) clazz.newInstance();
//3.注册驱动
//DriverManager.registerDriver(driver);
/*
可以注释掉上述代码的原因,是因为在mysql的Driver类中声明有:
static {
try {
DriverManager.registerDriver(new Driver());
} catch (SQLException var1) {
throw new RuntimeException("Can't register driver!");
}
}
*/
//3.获取连接
Connection conn = DriverManager.getConnection(url, user, password);
System.out.println(conn);
} catch (Exception e) {
e.printStackTrace();
}
}
方式五(推荐)
使用配置文件的方式保存配置信息,在代码中加载配置文件
使用配置文件的好处:
- 实现了代码和数据的分离,如果需要修改配置信息,直接在配置文件中修改,不需要深入代码
- 如果修改了配置信息,省去重新编译的过程
使用方法:
在src目录下创建jdbc.properties文件,添加以下内容
public void connect05() throws IOException, ClassNotFoundException, SQLException {
//通过Properties对象获取配置文件的信息
Properties properties = new Properties();
properties.load(new FileInputStream("src\\mysql.properties"));
//获取相关值
String user = properties.getProperty("user");
String password = properties.getProperty("password");
String url = properties.getProperty("url");
String driver = properties.getProperty("driver");
Class.forName(driver);
Connection connection = DriverManager.getConnection(url, user, password);
System.out.println(connection);
}
其中,配置文件声明在工程的src目录下:【jdbc.properties】
user=root
password=123456
url=jdbc:mysql://localhost:3306/admin
driverClass=com.mysql.jdbc.Driver