Commit 63e007676125a3aa518c2542b24c93b9ae9dde3a
1 parent
e55872fa
修复queryTableDictByKeys与queryTableDictTextByKey存在redis key冲突的情况
Showing
2 changed files
with
2 additions
and
1 deletions
jeecg-boot/jeecg-boot-base-common/src/main/java/org/jeecg/common/constant/CacheConstant.java
jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/system/service/impl/SysDictServiceImpl.java
... | ... | @@ -138,7 +138,7 @@ public class SysDictServiceImpl extends ServiceImpl<SysDictMapper, SysDict> impl |
138 | 138 | * @return |
139 | 139 | */ |
140 | 140 | @Override |
141 | - @Cacheable(value = CacheConstant.SYS_DICT_TABLE_CACHE) | |
141 | + @Cacheable(value = CacheConstant.SYS_DICT_TABLE_BY_KEYS_CACHE) | |
142 | 142 | public List<String> queryTableDictByKeys(String table, String text, String code, String keys) { |
143 | 143 | if(oConvertUtils.isEmpty(keys)){ |
144 | 144 | return null; |
... | ... |