小編這次要給大家分享的是Properties如何實現(xiàn)配置數(shù)據(jù)庫驅(qū)動,文章內(nèi)容豐富,感興趣的小伙伴可以來了解一下,希望大家閱讀完這篇文章之后能夠有所收獲。
成都創(chuàng)新互聯(lián)專注于永城企業(yè)網(wǎng)站建設(shè),響應(yīng)式網(wǎng)站設(shè)計,商城系統(tǒng)網(wǎng)站開發(fā)。永城網(wǎng)站建設(shè)公司,為永城等地區(qū)提供建站服務(wù)。全流程按需策劃,專業(yè)設(shè)計,全程項目跟蹤,成都創(chuàng)新互聯(lián)專業(yè)和態(tài)度為您提供的服務(wù)
優(yōu)點:
便于修改連接屬性。只需在配置文件中修改,不需要在代碼中修改了。 更易于維護代碼安全性。
方法:
在src文件嘉下創(chuàng)建database.properties文本文件;添加內(nèi)容:
driver = com.MySQL.jdbc.Driver
url=jdbc:mysql://localhost:3306/y1
name=root
password=root
創(chuàng)建工具類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+"數(shù)據(jù)庫連接失敗"); } } public static Connection getConnection(){ return con; }
其他類使用時調(diào)用即可
輸出結(jié)果
完美^_^
看完這篇關(guān)于Properties如何實現(xiàn)配置數(shù)據(jù)庫驅(qū)動的文章,如果覺得文章內(nèi)容寫得不錯的話,可以把它分享出去給更多人看到。