|
@@ -6,11 +6,15 @@ import com.gxzc.zen.api.sys.mapper.SysDicMapper
|
|
|
import com.gxzc.zen.api.sys.model.SysDic
|
|
|
import com.gxzc.zen.api.sys.service.ISysDicService
|
|
|
import com.gxzc.zen.common.contants.CACHEKEYS
|
|
|
+import com.gxzc.zen.common.contants.PLATFORM
|
|
|
import com.gxzc.zen.common.exception.ZenException
|
|
|
import com.gxzc.zen.common.exception.ZenExceptionEnum
|
|
|
-import com.gxzc.zen.common.util.CacheUtil
|
|
|
+import com.gxzc.zen.common.properties.PlatformProperties
|
|
|
+import com.gxzc.zen.common.util.RedisCacheUtil
|
|
|
+import com.gxzc.zen.common.util.PlatformUtil
|
|
|
import com.gxzc.zen.orm.annotation.ZenTransactional
|
|
|
import org.slf4j.LoggerFactory
|
|
|
+import org.springframework.beans.factory.annotation.Autowired
|
|
|
import org.springframework.boot.CommandLineRunner
|
|
|
import org.springframework.stereotype.Service
|
|
|
|
|
@@ -30,18 +34,23 @@ class SysDicServiceImpl : ServiceImpl<SysDicMapper, SysDic>(), ISysDicService, C
|
|
|
const val CACHE_KEY_ALL = "dic_all"
|
|
|
}
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private lateinit var platformProperties: PlatformProperties
|
|
|
+
|
|
|
override fun run(vararg args: String?) {
|
|
|
logger.debug("${this::class.simpleName} init.")
|
|
|
getListCacheable()
|
|
|
}
|
|
|
|
|
|
override fun getListCacheable(): MutableList<SysDic> {
|
|
|
- val cached = CacheUtil.get(CACHEKEYS.SYS, CACHE_KEY_ALL)?.get() as? MutableList<SysDic>
|
|
|
+ val cached = RedisCacheUtil.get(CACHEKEYS.SYS, CACHE_KEY_ALL)?.get() as? MutableList<SysDic>
|
|
|
if (cached != null) {
|
|
|
return cached
|
|
|
}
|
|
|
val ret = baseMapper.selectByParams(null)
|
|
|
- CacheUtil.put(CACHEKEYS.SYS, CACHE_KEY_ALL, ret)
|
|
|
+ if (PlatformUtil.getPlatform(platformProperties) == PLATFORM.SYSTEM) {
|
|
|
+ RedisCacheUtil.put(CACHEKEYS.SYS, CACHE_KEY_ALL, ret)
|
|
|
+ }
|
|
|
return ret
|
|
|
}
|
|
|
|
|
@@ -64,15 +73,17 @@ class SysDicServiceImpl : ServiceImpl<SysDicMapper, SysDic>(), ISysDicService, C
|
|
|
|
|
|
@ZenTransactional
|
|
|
override fun modify(data: SysDic): SysDic {
|
|
|
- baseMapper.updateNoLogic(data, EntityWrapper<SysDic>().eq("id", data.id))
|
|
|
- // 更新缓存
|
|
|
- val cached = CacheUtil.get(CACHEKEYS.SYS, CACHE_KEY_ALL)?.get() as? MutableList<SysDic>
|
|
|
- cached?.let {
|
|
|
- val idx = it.indexOfFirst { it.id == data.id }
|
|
|
- if (idx != -1) {
|
|
|
- it[idx] = data
|
|
|
+ if (PlatformUtil.getPlatform() == PLATFORM.SYSTEM) {
|
|
|
+ baseMapper.updateNoLogic(data, EntityWrapper<SysDic>().eq("id", data.id))
|
|
|
+ // 更新缓存
|
|
|
+ val cached = RedisCacheUtil.get(CACHEKEYS.SYS, CACHE_KEY_ALL)?.get() as? MutableList<SysDic>
|
|
|
+ cached?.let {
|
|
|
+ val idx = it.indexOfFirst { it.id == data.id }
|
|
|
+ if (idx != -1) {
|
|
|
+ it[idx] = data
|
|
|
+ }
|
|
|
+ RedisCacheUtil.put(CACHEKEYS.SYS, CACHE_KEY_ALL, it)
|
|
|
}
|
|
|
- CacheUtil.put(CACHEKEYS.SYS, CACHE_KEY_ALL, it)
|
|
|
}
|
|
|
return data
|
|
|
}
|
|
@@ -95,28 +106,32 @@ class SysDicServiceImpl : ServiceImpl<SysDicMapper, SysDic>(), ISysDicService, C
|
|
|
|
|
|
@ZenTransactional
|
|
|
override fun insertCacheable(data: SysDic) {
|
|
|
- if (baseMapper.insert(data) == 0) {
|
|
|
- throw ZenException(ZenExceptionEnum.BIZ_INSERT_ERROR)
|
|
|
- }
|
|
|
- val cached = CacheUtil.get(CACHEKEYS.SYS, CACHE_KEY_ALL)?.get() as? MutableList<SysDic>
|
|
|
- cached?.let {
|
|
|
- it.add(data)
|
|
|
- CacheUtil.put(CACHEKEYS.SYS, CACHE_KEY_ALL, it)
|
|
|
+ if (PlatformUtil.getPlatform() == PLATFORM.SYSTEM) {
|
|
|
+ if (baseMapper.insert(data) == 0) {
|
|
|
+ throw ZenException(ZenExceptionEnum.BIZ_INSERT_ERROR)
|
|
|
+ }
|
|
|
+ val cached = RedisCacheUtil.get(CACHEKEYS.SYS, CACHE_KEY_ALL)?.get() as? MutableList<SysDic>
|
|
|
+ cached?.let {
|
|
|
+ it.add(data)
|
|
|
+ RedisCacheUtil.put(CACHEKEYS.SYS, CACHE_KEY_ALL, it)
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|
|
|
@ZenTransactional
|
|
|
override fun physicalDeleteCacheable(id: Long) {
|
|
|
- if (baseMapper.physicalDelete(EntityWrapper<SysDic>().eq("id", id)) <= 0) {
|
|
|
- throw ZenException(ZenExceptionEnum.BIZ_DELETE_ERROR)
|
|
|
- }
|
|
|
- //
|
|
|
- val cached = CacheUtil.get(CACHEKEYS.SYS, CACHE_KEY_ALL)?.get() as? MutableList<SysDic>
|
|
|
- cached?.let {
|
|
|
- it.removeIf {
|
|
|
- it.id == id
|
|
|
+ if (PlatformUtil.getPlatform() == PLATFORM.SYSTEM) {
|
|
|
+ if (baseMapper.physicalDelete(EntityWrapper<SysDic>().eq("id", id)) <= 0) {
|
|
|
+ throw ZenException(ZenExceptionEnum.BIZ_DELETE_ERROR)
|
|
|
+ }
|
|
|
+ //
|
|
|
+ val cached = RedisCacheUtil.get(CACHEKEYS.SYS, CACHE_KEY_ALL)?.get() as? MutableList<SysDic>
|
|
|
+ cached?.let {
|
|
|
+ it.removeIf {
|
|
|
+ it.id == id
|
|
|
+ }
|
|
|
+ RedisCacheUtil.put(CACHEKEYS.SYS, CACHE_KEY_ALL, it)
|
|
|
}
|
|
|
- CacheUtil.put(CACHEKEYS.SYS, CACHE_KEY_ALL, it)
|
|
|
}
|
|
|
}
|
|
|
}
|