1. 程式人生 > 程式設計 >基於Properties實現配置資料庫驅動

基於Properties實現配置資料庫驅動

優點:

便於修改連線屬性。只需在配置檔案中修改,不需要在程式碼中修改了。 更易於維護程式碼安全性。

方法:

在src檔案嘉下建立database.properties文字檔案;新增內容:

driver = com.mysql.jdbc.Driver
url=jdbc:mysql://localhost:3306/y1
name=root
password=root

建立工具類MyJDBCUtiles.java,新增程式碼:  

package com.kong.JDBCUtils;
 
import java.io.InputStream;
import java.sql.*;
import java.util.Properties;
 
public class MyJDBCUtiles {
  private MyJDBCUtiles(){}
  private static Connection con;
  private static String driver;
  private static String url;
  private static String name;
  private static String password;
  static{
    try {
      InputStream is = MyJDBCUtiles.class.getClassLoader().getResourceAsStream("database.properties");
      Properties properties = new Properties();
      properties.load(is);
      driver = properties.getProperty("driver");
      url = properties.getProperty("url");
      name = properties.getProperty("name");
      password = properties.getProperty("password");
      Class.forName(driver);
      con = DriverManager.getConnection(url,name,password);
    }catch (Exception ep){
      throw new RuntimeException(ep+"資料庫連線失敗");
    }
  }
  public static Connection getConnection(){
    return con;
  }

其他類使用時呼叫即可

輸出結果

基於Properties實現配置資料庫驅動

完美^_^

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援我們。