最近比較流行使用阿里巴巴druid的鏈結池
連線池這裡有資料庫密碼加密的功能
在連線池配置中使用
config.decrypt=true,表示密碼通過加密config.decrypt.key=$ ,密碼加密的key值,如果沒有設定key值此引數忽略
以下是加密解密的使用
//設定密碼
string password = "12345";
string arr = com.alibaba.druid.filter.config.configtools.genkeypair(512);
//獲得
system.out.println("私有key值:" + arr[0]);
system.out.println("公共key值:" + arr[1]);
string pwd =com.alibaba.druid.filter.config.configtools.encrypt(arr[0], password);
system.out.println("加密後密碼:" + pwd);
//獲得解碼密碼
com.alibaba.druid.filter.config.configtools.decrypt(arr[1], pwd);
//非key值加密
string pwd =com.alibaba.druid.filter.config.configtools.encrypt("12345");
system.out.println(pwd);
//解密
system.out.println( com.alibaba.druid.filter.config.configtools.decrypt(pwd));
Druid資料庫連線池密碼解密
有的時候我們會忘記資料庫使用的明文密碼,通常我們看到的情況是這個樣子,但有時候為了方便我們又需要在工具當中連線資料庫,那麼我們就需要知道明文密碼是多少 通常我們在專案當中看到的密碼是這個樣子的 jdbc.password kaftbiiroxh2vhy6a1chbqy1a1kcrhwrozbx ut...
druid資料庫連線池
一 池的理解 二 druid的特點 1.druid的誕生時間在dbcp,c3p0 hibernate 之後,吸取優點,彌補了不足。2.druid在效能方面也相當優秀。3.druid允許檢視或者以日誌的方式列印出sql語句。對查錯和除錯非常直觀。4.druid的核心,監控而生 對sql執行監控非常精細...
Druid資料庫連線池
連線池的好處 1 資源重用 2.更快的系統反應速度 3.新的資源分配手段 4.統一的連線管理,避免資料庫連線洩漏 datasource 通常被稱為資料來源,它包含連線池和連線池管理兩個部分。datasource用來取代drivermanager來獲取connection,獲取速度快,同時可以大幅度提...