mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-04-19 03:01:48 +08:00
RedisDS增加user支持
This commit is contained in:
parent
eeeaf7664a
commit
97577d7dd2
@ -2,9 +2,11 @@
|
||||
# 🚀Changelog
|
||||
|
||||
-------------------------------------------------------------------------------------------------------------
|
||||
# 5.8.26(2024-01-18)
|
||||
# 5.8.26(2024-01-19)
|
||||
|
||||
### 🐣新特性
|
||||
* 【db 】 RedisDS增加user支持(issue#I8XEQ4@Gitee)
|
||||
|
||||
### 🐞Bug修复
|
||||
* 【crypto】 修复BouncyCastleProvider导致graalvm应用报错UnsupportedFeatureError(pr#3464@Github)
|
||||
* 【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("soTimeout", group, setting.getInt("timeout", group, Protocol.DEFAULT_TIMEOUT)),
|
||||
// 用户名,issue#I8XEQ4
|
||||
setting.getStr("user", group, null),
|
||||
// 密码
|
||||
setting.getStr("password", group, null),
|
||||
// 数据库序号
|
||||
|
Loading…
x
Reference in New Issue
Block a user