Explorar el Código

修复redis缓存修改带来的bug

NorthLan hace 7 años
padre
commit
0be1dab3db

+ 6 - 1
zen-api/src/main/kotlin/com/gxzc/zen/api/sys/service/impl/SysDicServiceImpl.kt

@@ -72,6 +72,7 @@ class SysDicServiceImpl : ServiceImpl<SysDicMapper, SysDic>(), ISysDicService, C
             if (idx != -1) {
                 it[idx] = data
             }
+            CacheUtil.put(CACHEKEYS.SYS, CACHE_KEY_ALL, it)
         }
         return data
     }
@@ -98,7 +99,10 @@ class SysDicServiceImpl : ServiceImpl<SysDicMapper, SysDic>(), ISysDicService, C
             throw ZenException(ZenExceptionEnum.BIZ_INSERT_ERROR)
         }
         val cached = CacheUtil.get(CACHEKEYS.SYS, CACHE_KEY_ALL)?.get() as? MutableList<SysDic>
-        cached?.add(data)
+        cached?.let {
+            it.add(data)
+            CacheUtil.put(CACHEKEYS.SYS, CACHE_KEY_ALL, it)
+        }
     }
 
     @ZenTransactional
@@ -112,6 +116,7 @@ class SysDicServiceImpl : ServiceImpl<SysDicMapper, SysDic>(), ISysDicService, C
             it.removeIf {
                 it.id == id
             }
+            CacheUtil.put(CACHEKEYS.SYS, CACHE_KEY_ALL, it)
         }
     }
 }

+ 6 - 1
zen-api/src/main/kotlin/com/gxzc/zen/api/sys/service/impl/SysParamServiceImpl.kt

@@ -72,6 +72,7 @@ class SysParamServiceImpl : ServiceImpl<SysParamMapper, SysParam>(), ISysParamSe
             if (idx != -1) {
                 it[idx] = data
             }
+            CacheUtil.put(CACHEKEYS.SYS, CACHE_KEY_ALL, it)
         }
         return data
     }
@@ -98,7 +99,10 @@ class SysParamServiceImpl : ServiceImpl<SysParamMapper, SysParam>(), ISysParamSe
             throw ZenException(ZenExceptionEnum.BIZ_INSERT_ERROR)
         }
         val cached = CacheUtil.get(CACHEKEYS.SYS, CACHE_KEY_ALL)?.get() as? MutableList<SysParam>
-        cached?.add(data)
+        cached?.let {
+            it.add(data)
+            CacheUtil.put(CACHEKEYS.SYS, CACHE_KEY_ALL, it)
+        }
     }
 
     @ZenTransactional
@@ -112,6 +116,7 @@ class SysParamServiceImpl : ServiceImpl<SysParamMapper, SysParam>(), ISysParamSe
             it.removeIf {
                 it.id == id
             }
+            CacheUtil.put(CACHEKEYS.SYS, CACHE_KEY_ALL, it)
         }
     }
 }

+ 6 - 1
zen-api/src/main/kotlin/com/gxzc/zen/api/sys/service/impl/SysUserServiceImpl.kt

@@ -63,7 +63,10 @@ class SysUserServiceImpl : ServiceImpl<SysUserMapper, SysUser>(), ISysUserServic
             throw ZenException(ZenExceptionEnum.BIZ_INSERT_ERROR)
         }
         val cached = CacheUtil.get(CACHEKEYS.USER, CACHE_KEY_ALL)?.get() as? MutableList<SysUser>
-        cached?.add(entity)
+        cached?.let {
+            it.add(entity)
+            CacheUtil.put(CACHEKEYS.SYS, CACHE_KEY_ALL, it)
+        }
     }
 
     @ZenTransactional
@@ -76,6 +79,7 @@ class SysUserServiceImpl : ServiceImpl<SysUserMapper, SysUser>(), ISysUserServic
             if (idx != -1) {
                 it[idx] = entity
             }
+            CacheUtil.put(CACHEKEYS.SYS, CACHE_KEY_ALL, it)
         }
         return entity
     }
@@ -91,6 +95,7 @@ class SysUserServiceImpl : ServiceImpl<SysUserMapper, SysUser>(), ISysUserServic
             it.removeIf {
                 it.id == id
             }
+            CacheUtil.put(CACHEKEYS.SYS, CACHE_KEY_ALL, it)
         }
     }
 }