您好,登錄后才能下訂單哦!
小編這次要給大家分享的是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如何實現配置數據庫驅動的文章,如果覺得文章內容寫得不錯的話,可以把它分享出去給更多人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。