java datasource.properties 資料庫相關資訊的配置

來源:互聯網
上載者:User

標籤:io   os   使用   ar   java   檔案   資料   sp   c   

在資料庫配置中,經常使用設定檔來設定資料庫

1:資料設定檔
# databasetype : 資料庫的類別
# driverclass     : 資料庫驅動類
# databaseurl   : 資料庫連接URL
# usejndi         : 是否使用JNDI調用資料庫,true 開啟,其餘為預設值關閉
# databasejndi : 如果使用JNDI調用,則配置調用名稱
# debug          : 日誌工具,log4j,其餘使用預設的Console

# ================ SQLite ================ #
databasetype=SQLite
driverclass=org.sqlite.JDBC
databaseurl=jdbc\:sqlite\:SQLiteDB\\test.db
usejndi=false
databasejndi=test
debug=log4j

# ================ MySQL ================ #
#databasetype=MySQL
#driverclass=com.mysql.jdbc.Driver
#databaseurl=jdbc:mysql://127.0.0.1:3306/test?user=root&password=123456&useUnicode=true&characterEncoding=GB2312
#usejndi=false
#databasejndi=test
#debug=console

2:讀取資料庫設定檔

 

import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;

/**
 * 讀取properties設定檔的toolKit
 */
public class PropertiesHelper {
    
    public static String getProperty(String fileName, String key) {
        String value = "";
        InputStream in = null;
        try {
            in = PropertiesHelper.class.getResourceAsStream("/" + fileName);
            Properties properties = new Properties();
            properties.load(in);
            value = properties.getProperty(key);
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            try {
                in.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        
        return value;
    }
}

 

java datasource.properties 資料庫相關資訊的配置

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.