From 150ff7182fa9008880b58211b902179834f59135 Mon Sep 17 00:00:00 2001 From: smallchill Date: Mon, 13 Apr 2020 23:12:23 +0800 Subject: [PATCH] =?UTF-8?q?:heavy=5Fplus=5Fsign:=20DictCache=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0getKey=E6=96=B9=E6=B3=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../springblade/system/cache/DictCache.java | 27 ++++++++++++++++--- 1 file changed, 23 insertions(+), 4 deletions(-) diff --git a/blade-service-api/blade-dict-api/src/main/java/org/springblade/system/cache/DictCache.java b/blade-service-api/blade-dict-api/src/main/java/org/springblade/system/cache/DictCache.java index 33cd0895..31539360 100644 --- a/blade-service-api/blade-dict-api/src/main/java/org/springblade/system/cache/DictCache.java +++ b/blade-service-api/blade-dict-api/src/main/java/org/springblade/system/cache/DictCache.java @@ -24,6 +24,7 @@ import org.springblade.system.entity.Dict; import org.springblade.system.feign.IDictClient; import java.util.List; +import java.util.Optional; import static org.springblade.core.cache.constant.CacheConstant.DICT_CACHE; @@ -35,6 +36,7 @@ import static org.springblade.core.cache.constant.CacheConstant.DICT_CACHE; public class DictCache { private static final String DICT_ID = "dict:id:"; + private static final String DICT_KEY = "dict:key:"; private static final String DICT_VALUE = "dict:value:"; private static final String DICT_LIST = "dict:list:"; @@ -51,7 +53,7 @@ public class DictCache { * 获取字典实体 * * @param id 主键 - * @return + * @return Dict */ public static Dict getById(Long id) { return CacheUtil.get(DICT_CACHE, DICT_ID, id, () -> { @@ -60,12 +62,29 @@ public class DictCache { }); } + /** + * 获取字典键 + * + * @param code 字典编号 + * @param dictValue 字典值 + * @return String + */ + public static String getKey(String code, String dictValue) { + return CacheUtil.get(DICT_CACHE, DICT_KEY + code + StringPool.COLON, dictValue, () -> { + List list = getList(code); + Optional key = list.stream().filter( + dict -> dict.getDictValue().equalsIgnoreCase(dictValue) + ).map(Dict::getDictKey).findFirst(); + return key.orElse(StringPool.EMPTY); + }); + } + /** * 获取字典值 * * @param code 字典编号 * @param dictKey Integer型字典键 - * @return + * @return String */ public static String getValue(String code, Integer dictKey) { return CacheUtil.get(DICT_CACHE, DICT_VALUE + code + StringPool.COLON, String.valueOf(dictKey), () -> { @@ -79,7 +98,7 @@ public class DictCache { * * @param code 字典编号 * @param dictKey String型字典键 - * @return + * @return String */ public static String getValue(String code, String dictKey) { return CacheUtil.get(DICT_CACHE, DICT_VALUE + code + StringPool.COLON, dictKey, () -> { @@ -92,7 +111,7 @@ public class DictCache { * 获取字典集合 * * @param code 字典编号 - * @return + * @return List */ public static List getList(String code) { return CacheUtil.get(DICT_CACHE, DICT_LIST, code, () -> {