From fbfd3ad23c290f52b1590805125f75194b866465 Mon Sep 17 00:00:00 2001 From: HouKunLin Date: Mon, 13 Dec 2021 19:57:47 +0800 Subject: [PATCH] =?UTF-8?q?build:=20=E5=8F=91=E5=B8=83=201.4.6.2=20?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - fix: 修复某些场景下获取不到 RedisTemplate 导致启动失败问题 --- build.gradle | 2 +- changelog.md | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 1e3ed94..6e47c2c 100644 --- a/build.gradle +++ b/build.gradle @@ -10,7 +10,7 @@ plugins { } group = 'com.houkunlin' -version = '1.4.6.1' +version = '1.4.6.2' sourceCompatibility = '1.8' description = """ 系统数据字典自动翻译成字典文本。可集合系统数据库中存储的用户数据字典,也可使用枚举做系统数据字典,主要用在返回数据给前端时自动把字典值翻译成字典文本信息; diff --git a/changelog.md b/changelog.md index 1e31421..f205096 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,11 @@ # 更改日志 +## 1.4.6.2 版本 + +- fix: 修复某些场景下获取不到 RedisTemplate 导致启动失败问题 + - 在一些多模块项目中,公共模块配置了 RedisTemplate Bean 先注入到上下文中,系统字典的 + RedisTemplate 无法继续注入,因此导致启动失败 + ## 1.4.6.1 版本 - fix: 修复字典值使用文本分隔转换数组结果时,字典值无分隔符导致无数据问题