RedisDS增加user支持

This commit is contained in:
Looly 2024-01-19 17:44:14 +08:00
parent eeeaf7664a
commit 97577d7dd2
2 changed files with 5 additions and 1 deletions

View File

@ -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应用报错UnsupportedFeatureErrorpr#3464@Github
* 【http 】 修复UserAgentUtil对QQ浏览器识别问题issue#I8X5XQ@Gitee

View File

@ -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),
// 数据库序号