JDBC连接Mysql的方式有哪些

数据库   发布日期:2024年11月12日   浏览次数:440

本篇内容主要讲解“JDBC连接Mysql的方式有哪些”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“JDBC连接Mysql的方式有哪些”吧!

测试环境说明

mysql数据库:jdbc:mysql://localhost:3306/test

IDE:IDEA 2022

JDK:JDK8

mysql:mysql 5.7

JDBC:5.1.37

第一种方式

使用静态加载驱动方式,连接mysql

这种方式灵活性差,依赖性强

  1. public void connection01() throws SQLException {
  2. // 注册驱动
  3. Driver driver = new Driver();
  4. // 创建Properties对象,用于保存mysql账号和密码键值对
  5. Properties properties = new Properties();
  6. properties.setProperty("user", "root");
  7. properties.setProperty("password", "123456");
  8. String url = "jdbc:mysql://localhost:3306/test";
  9. // 得到mysql的连接
  10. Connection connection = driver.connect(url, properties);
  11. // 得到可以与mysql语句进行交互的对象
  12. Statement statement = connection.createStatement();
  13. // 关闭与 mysql语句进行交互的对象
  14. statement.close();
  15. // 关闭与mysql的连接
  16. connection.close();

第二种方式

在第一种方式的基础上使用反射动态加载驱动,依赖性减小、灵活性提高

  1. public void connection02() throws ClassNotFoundException, InstantiationException, IllegalAccessException, SQLException {
  2. // 使用反射动态加载mysql驱动件程序
  3. Class<?> aClass = Class.forName("com.mysql.jdbc.Driver");
  4. Driver driver = (Driver) aClass.newInstance();
  5. // 创建Properties对象,用于保存mysql账号和密码键值对
  6. Properties properties = new Properties();
  7. properties.setProperty("user", "root");
  8. properties.setProperty("password", "123456");
  9. String url = "jdbc:mysql://localhost:3306/test";
  10. // 得到mysql的连接
  11. Connection connection = driver.connect(url, properties);
  12. // 得到可以与mysql语句进行交互的对象
  13. Statement statement = connection.createStatement();
  14. // 关闭与 mysql语句进行交互的对象
  15. statement.close();
  16. // 关闭与 mysql语句进行交互的对象
  17. connection.close();
  18. }

第三种方式

使用DriverManager统一进行管理

  1. public void connection03() throws ClassNotFoundException, InstantiationException, IllegalAccessException, SQLException {
  2. // 使用反射动态加载mysql驱动件程序
  3. Class<?> aClass = Class.forName("com.mysql.jdbc.Driver");
  4. Driver driver = (Driver) aClass.newInstance();
  5. String user = "root";
  6. String password = "123456";
  7. String url = "jdbc:mysql://localhost:3306/test";
  8. // 使用DriverManager加载Driver
  9. DriverManager.registerDriver(driver);
  10. // 得到mysql的连接
  11. Connection connection = DriverManager.getConnection(url, user, password);
  12. // 得到可以与mysql语句进行交互的对象
  13. Statement statement = connection.createStatement();
  14. // 关闭与 mysql语句进行交互的对象
  15. statement.close();
  16. // 关闭与 mysql语句进行交互的对象
  17. connection.close();
  18. }

第四种方式

其实Class.forName(“com.mysql.jdbc.Driver”)在底层已经自动加载好了Driver实例

所以Driver driver = (Driver) aClass.newInstance();这句话可以省略

这种方式也是开发中使用最多的一种方式

  1. public void connection04() throws ClassNotFoundException, SQLException {
  2. // 使用反射动态加载mysql驱动件程序
  3. Class<?> aClass = Class.forName("com.mysql.jdbc.Driver");
  4. String user = "root";
  5. String password = "123456";
  6. String url = "jdbc:mysql://localhost:3306/test";
  7. // 得到mysql的连接
  8. Connection connection = DriverManager.getConnection(url, user, password);
  9. // 得到可以与mysql语句进行交互的对象
  10. Statement statement = connection.createStatement();
  11. // 关闭与 mysql语句进行交互的对象
  12. statement.close();
  13. // 关闭与 mysql语句进行交互的对象
  14. connection.close();
  15. }

第五种方式

mysql5.16后可以不用Class.forName(“com.mysql.jdbc.Driver”);来加载驱动了
从jdk1.5以后使用了jdbc4,不再需要显示调用class.forName()注册驱动而是自动调用驱动jar包下META-INFservicesjava.sql.Driver文本中的类名称去注册
建议还是写上 CLass . forName(“com.mysql.jdbc.Driver”),更加明确,兼容性更好

这里同时使用properties配置文件实现动态信息动态读取,灵活性得到提升

推荐使用这种方式

src/com/mysql/mysql.properties配置文件内容如下

  1. url=jdbc:mysql://localhost:3306/test
  2. user=root
  3. password=123456

连接mysql程序

  1. public void connection05() throws SQLException, ClassNotFoundException, IOException {
  2. // 使用Properties读取配置文件下的内容
  3. Properties properties = new Properties();
  4. properties.load(new FileInputStream("src/com/mysql/mysql.properties"));
  5. String url = properties.getProperty("url");
  6. String user = properties.getProperty("user");
  7. String password = properties.getProperty("password");
  8. // 得到mysql的连接
  9. Connection connection = DriverManager.getConnection(url, user, password);
  10. // 得到可以与mysql语句进行交互的对象
  11. Statement statement = connection.createStatement();
  12. // 关闭与 mysql语句进行交互的对象
  13. statement.close();
  14. // 关闭与 mysql语句进行交互的对象
  15. connection.close();
  16. }

以上就是JDBC连接Mysql的方式有哪些的详细内容,更多关于JDBC连接Mysql的方式有哪些的资料请关注九品源码其它相关文章!