mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-05-09 23:51:34 +08:00
RedisDS增加user支持
This commit is contained in:
parent
eeeaf7664a
commit
97577d7dd2
@ -2,9 +2,11 @@
|
|||||||
# 🚀Changelog
|
# 🚀Changelog
|
||||||
|
|
||||||
-------------------------------------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------------------------------------
|
||||||
# 5.8.26(2024-01-18)
|
# 5.8.26(2024-01-19)
|
||||||
|
|
||||||
### 🐣新特性
|
### 🐣新特性
|
||||||
|
* 【db 】 RedisDS增加user支持(issue#I8XEQ4@Gitee)
|
||||||
|
|
||||||
### 🐞Bug修复
|
### 🐞Bug修复
|
||||||
* 【crypto】 修复BouncyCastleProvider导致graalvm应用报错UnsupportedFeatureError(pr#3464@Github)
|
* 【crypto】 修复BouncyCastleProvider导致graalvm应用报错UnsupportedFeatureError(pr#3464@Github)
|
||||||
* 【http 】 修复UserAgentUtil对QQ浏览器识别问题(issue#I8X5XQ@Gitee)
|
* 【http 】 修复UserAgentUtil对QQ浏览器识别问题(issue#I8X5XQ@Gitee)
|
||||||
|
@ -121,6 +121,8 @@ public class RedisDS implements Closeable, Serializable {
|
|||||||
setting.getInt("connectionTimeout", group, setting.getInt("timeout", group, Protocol.DEFAULT_TIMEOUT)),
|
setting.getInt("connectionTimeout", group, setting.getInt("timeout", group, Protocol.DEFAULT_TIMEOUT)),
|
||||||
// 读取数据超时
|
// 读取数据超时
|
||||||
setting.getInt("soTimeout", group, setting.getInt("timeout", group, Protocol.DEFAULT_TIMEOUT)),
|
setting.getInt("soTimeout", group, setting.getInt("timeout", group, Protocol.DEFAULT_TIMEOUT)),
|
||||||
|
// 用户名,issue#I8XEQ4
|
||||||
|
setting.getStr("user", group, null),
|
||||||
// 密码
|
// 密码
|
||||||
setting.getStr("password", group, null),
|
setting.getStr("password", group, null),
|
||||||
// 数据库序号
|
// 数据库序号
|
||||||
|
Loading…
x
Reference in New Issue
Block a user