|
@@ -1,14 +1,19 @@
|
|
|
package com.gxzc.zen.api.sys.service.impl
|
|
|
|
|
|
+import com.baomidou.mybatisplus.mapper.EntityWrapper
|
|
|
import com.baomidou.mybatisplus.service.impl.ServiceImpl
|
|
|
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.exception.ZenException
|
|
|
+import com.gxzc.zen.common.exception.ZenExceptionEnum
|
|
|
+import com.gxzc.zen.orm.annotation.MultiTransactional
|
|
|
import org.springframework.beans.factory.annotation.Autowired
|
|
|
import org.springframework.cache.CacheManager
|
|
|
import org.springframework.cache.annotation.Cacheable
|
|
|
import org.springframework.stereotype.Service
|
|
|
+import javax.annotation.PostConstruct
|
|
|
|
|
|
/**
|
|
|
* <p>
|
|
@@ -20,17 +25,20 @@ import org.springframework.stereotype.Service
|
|
|
*/
|
|
|
@Service
|
|
|
class SysDicServiceImpl : ServiceImpl<SysDicMapper, SysDic>(), ISysDicService {
|
|
|
-
|
|
|
-
|
|
|
companion object {
|
|
|
- const val CACHE_KEY_ALL = "'dic_all'"
|
|
|
+ const val CACHE_KEY_ALL = "dic_all"
|
|
|
}
|
|
|
|
|
|
@Autowired
|
|
|
private lateinit var cacheManager: CacheManager
|
|
|
|
|
|
- @Cacheable(CACHEKEYS.SYS, key = CACHE_KEY_ALL)
|
|
|
-// @PostConstruct
|
|
|
+ @PostConstruct
|
|
|
+ fun initCache() {
|
|
|
+ val cache = cacheManager.getCache(CACHEKEYS.SYS)
|
|
|
+ cache.put(CACHE_KEY_ALL, getListCacheable())
|
|
|
+ }
|
|
|
+
|
|
|
+ @Cacheable(CACHEKEYS.SYS, key = "'$CACHE_KEY_ALL'")
|
|
|
override fun getListCacheable(): MutableList<SysDic> {
|
|
|
return baseMapper.selectByParams(null)
|
|
|
}
|
|
@@ -51,17 +59,18 @@ class SysDicServiceImpl : ServiceImpl<SysDicMapper, SysDic>(), ISysDicService {
|
|
|
|
|
|
// @CacheEvict(CACHEKEYS.SYS, key = "'dic_key_' + #sysDic.key")
|
|
|
@Suppress("UNCHECKED_CAST")
|
|
|
+ @MultiTransactional
|
|
|
override fun modifySysDic(data: SysDic): SysDic {
|
|
|
- baseMapper.updateById(data)
|
|
|
+ baseMapper.updateNoLogic(data, EntityWrapper<SysDic>().eq("id", data.id))
|
|
|
// 更新缓存
|
|
|
val cache = cacheManager.getCache(CACHEKEYS.SYS)
|
|
|
- val cachedList: MutableList<SysDic>? = cache[CACHE_KEY_ALL].get() as MutableList<SysDic>
|
|
|
+ val cachedList: MutableList<SysDic>? = cache[CACHE_KEY_ALL].get() as MutableList<SysDic>?
|
|
|
cachedList?.let {
|
|
|
- it.removeIf { it.id == data.id }
|
|
|
- it.add(data)
|
|
|
- cache.put(CACHE_KEY_ALL, cachedList)
|
|
|
+ val idx = it.indexOfFirst { it.id == data.id }
|
|
|
+ if (idx != -1) {
|
|
|
+ it[idx] = data
|
|
|
+ }
|
|
|
}
|
|
|
-
|
|
|
return data
|
|
|
}
|
|
|
|
|
@@ -80,4 +89,19 @@ class SysDicServiceImpl : ServiceImpl<SysDicMapper, SysDic>(), ISysDicService {
|
|
|
null
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ @Suppress("UNCHECKED_CAST")
|
|
|
+ override fun insertCacheable(data: SysDic) {
|
|
|
+ if (baseMapper.insert(data) == 0) {
|
|
|
+ throw ZenException(ZenExceptionEnum.BIZ_INSERT_ERROR)
|
|
|
+ }
|
|
|
+ val cache = cacheManager.getCache(CACHEKEYS.SYS)
|
|
|
+ val cachedList: MutableList<SysDic>? = cache[CACHE_KEY_ALL].get() as MutableList<SysDic>?
|
|
|
+ cachedList?.add(data)
|
|
|
+ }
|
|
|
+
|
|
|
+ @Suppress("UNCHECKED_CAST")
|
|
|
+ override fun realDeleteCacheable(data: SysDic) {
|
|
|
+ // TODO 删除啊
|
|
|
+ }
|
|
|
}
|