|
@@ -8,12 +8,11 @@ import com.gxzc.zen.api.sys.service.ISysParamService
|
|
|
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.common.util.CacheUtil
|
|
|
import com.gxzc.zen.orm.annotation.ZenTransactional
|
|
|
-import org.springframework.beans.factory.annotation.Autowired
|
|
|
-import org.springframework.cache.CacheManager
|
|
|
-import org.springframework.cache.annotation.Cacheable
|
|
|
+import org.slf4j.LoggerFactory
|
|
|
+import org.springframework.boot.CommandLineRunner
|
|
|
import org.springframework.stereotype.Service
|
|
|
-import javax.annotation.PostConstruct
|
|
|
|
|
|
/**
|
|
|
* <p>
|
|
@@ -23,30 +22,35 @@ import javax.annotation.PostConstruct
|
|
|
* @author NorthLan123
|
|
|
* @since 2018-02-06
|
|
|
*/
|
|
|
+@Suppress("UNCHECKED_CAST")
|
|
|
@Service
|
|
|
-class SysParamServiceImpl : ServiceImpl<SysParamMapper, SysParam>(), ISysParamService {
|
|
|
+class SysParamServiceImpl : ServiceImpl<SysParamMapper, SysParam>(), ISysParamService, CommandLineRunner {
|
|
|
companion object {
|
|
|
+ private val logger = LoggerFactory.getLogger(SysParamServiceImpl::class.java)
|
|
|
const val CACHE_KEY_ALL = "param_all"
|
|
|
}
|
|
|
|
|
|
- @Autowired
|
|
|
- private lateinit var cacheManager: CacheManager
|
|
|
-
|
|
|
- @PostConstruct
|
|
|
- fun initCache() {
|
|
|
- val cache = cacheManager.getCache(CACHEKEYS.SYS)
|
|
|
- cache.put(CACHE_KEY_ALL, getListCacheable())
|
|
|
+ override fun run(vararg args: String?) {
|
|
|
+ logger.debug("${this::class.simpleName} init.")
|
|
|
+ getListCacheable()
|
|
|
}
|
|
|
|
|
|
- @Cacheable(CACHEKEYS.SYS, key = "'$CACHE_KEY_ALL'")
|
|
|
override fun getListCacheable(): MutableList<SysParam> {
|
|
|
+ val cached = CacheUtil.get(CACHEKEYS.SYS, CACHE_KEY_ALL)?.get() as? MutableList<SysParam>
|
|
|
+ if (cached != null) {
|
|
|
+ return cached
|
|
|
+ }
|
|
|
return baseMapper.selectByParams(null)
|
|
|
}
|
|
|
|
|
|
override fun getList(enable: Boolean?): MutableList<SysParam> {
|
|
|
- return baseMapper.selectByParams(mutableMapOf(
|
|
|
- "enable" to enable!!
|
|
|
- ))
|
|
|
+ return if (enable != null) {
|
|
|
+ baseMapper.selectByParams(mutableMapOf(
|
|
|
+ "enable" to enable
|
|
|
+ ))
|
|
|
+ } else {
|
|
|
+ baseMapper.selectByParams(null)
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
override fun getListByKey(key: String): MutableList<SysParam> {
|
|
@@ -56,14 +60,12 @@ class SysParamServiceImpl : ServiceImpl<SysParamMapper, SysParam>(), ISysParamSe
|
|
|
}.toMutableList()
|
|
|
}
|
|
|
|
|
|
- @Suppress("UNCHECKED_CAST")
|
|
|
@ZenTransactional
|
|
|
override fun modify(data: SysParam): SysParam {
|
|
|
baseMapper.updateNoLogic(data, EntityWrapper<SysParam>().eq("id", data.id))
|
|
|
// 更新缓存
|
|
|
- val cache = cacheManager.getCache(CACHEKEYS.SYS)
|
|
|
- val cachedList: MutableList<SysParam>? = cache[CACHE_KEY_ALL].get() as MutableList<SysParam>?
|
|
|
- cachedList?.let {
|
|
|
+ val cached = CacheUtil.get(CACHEKEYS.SYS, CACHE_KEY_ALL)?.get() as? MutableList<SysParam>
|
|
|
+ cached?.let {
|
|
|
val idx = it.indexOfFirst { it.id == data.id }
|
|
|
if (idx != -1) {
|
|
|
it[idx] = data
|
|
@@ -88,27 +90,23 @@ class SysParamServiceImpl : ServiceImpl<SysParamMapper, SysParam>(), ISysParamSe
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- @Suppress("UNCHECKED_CAST")
|
|
|
@ZenTransactional
|
|
|
override fun insertCacheable(data: SysParam) {
|
|
|
if (baseMapper.insert(data) == 0) {
|
|
|
throw ZenException(ZenExceptionEnum.BIZ_INSERT_ERROR)
|
|
|
}
|
|
|
- val cache = cacheManager.getCache(CACHEKEYS.SYS)
|
|
|
- val cachedList: MutableList<SysParam>? = cache[CACHE_KEY_ALL].get() as MutableList<SysParam>?
|
|
|
- cachedList?.add(data)
|
|
|
+ val cached = CacheUtil.get(CACHEKEYS.SYS, CACHE_KEY_ALL)?.get() as? MutableList<SysParam>
|
|
|
+ cached?.add(data)
|
|
|
}
|
|
|
|
|
|
- @Suppress("UNCHECKED_CAST")
|
|
|
@ZenTransactional
|
|
|
override fun physicalDeleteCacheable(id: Long) {
|
|
|
if (baseMapper.physicalDelete(EntityWrapper<SysParam>().eq("id", id)) <= 0) {
|
|
|
throw ZenException(ZenExceptionEnum.BIZ_DELETE_ERROR)
|
|
|
}
|
|
|
//
|
|
|
- val cache = cacheManager.getCache(CACHEKEYS.SYS)
|
|
|
- val cachedList: MutableList<SysParam>? = cache[CACHE_KEY_ALL].get() as MutableList<SysParam>?
|
|
|
- cachedList?.let {
|
|
|
+ val cached = CacheUtil.get(CACHEKEYS.SYS, CACHE_KEY_ALL)?.get() as? MutableList<SysParam>
|
|
|
+ cached?.let {
|
|
|
it.removeIf {
|
|
|
it.id == id
|
|
|
}
|