|
@@ -20,38 +20,62 @@ import org.springframework.stereotype.Service
|
|
|
*/
|
|
|
@Service
|
|
|
class SysDicServiceImpl : ServiceImpl<SysDicMapper, SysDic>(), ISysDicService {
|
|
|
+
|
|
|
+
|
|
|
+ companion object {
|
|
|
+ const val CACHE_KEY_ALL = "'dic_all'"
|
|
|
+ }
|
|
|
+
|
|
|
@Autowired
|
|
|
private lateinit var cacheManager: CacheManager
|
|
|
|
|
|
- override fun selectList(): MutableList<SysDic> {
|
|
|
- return baseMapper.selectList(null, true)
|
|
|
+ @Cacheable(CACHEKEYS.SYS, key = CACHE_KEY_ALL)
|
|
|
+// @PostConstruct
|
|
|
+ override fun getListCacheable(): MutableList<SysDic> {
|
|
|
+ return baseMapper.selectByParams(null)
|
|
|
+ }
|
|
|
+
|
|
|
+ override fun getList(enable: Boolean?): MutableList<SysDic> {
|
|
|
+ return baseMapper.selectByParams(mutableMapOf(
|
|
|
+ "enable" to enable!!
|
|
|
+ ))
|
|
|
}
|
|
|
|
|
|
- @Cacheable(CACHEKEYS.SYS_DIC, key = "'key_' + #key")
|
|
|
+ // @Cacheable(CACHEKEYS.SYS, key = "'dic_key_' + #key")
|
|
|
override fun getListByKey(key: String): MutableList<SysDic> {
|
|
|
- return baseMapper.selectList(key, true)
|
|
|
+ val allData = getListCacheable()
|
|
|
+ return allData.filter {
|
|
|
+ it.enable != null && it.enable!! && it.key == key
|
|
|
+ }.toMutableList()
|
|
|
}
|
|
|
|
|
|
- // @CacheEvict(CACHEKEYS.SYS_DIC, key = "'key_' + #sysDic.key")
|
|
|
+ // @CacheEvict(CACHEKEYS.SYS, key = "'dic_key_' + #sysDic.key")
|
|
|
@Suppress("UNCHECKED_CAST")
|
|
|
override fun modifySysDic(sysDic: SysDic): SysDic {
|
|
|
baseMapper.updateById(sysDic)
|
|
|
// 更新缓存
|
|
|
- val cache = cacheManager.getCache(CACHEKEYS.SYS_DIC)
|
|
|
- val cachedList: MutableList<SysDic>? = cache["key_${sysDic.key}"].get() as MutableList<SysDic>
|
|
|
+ val cache = cacheManager.getCache(CACHEKEYS.SYS)
|
|
|
+ val cachedList: MutableList<SysDic>? = cache[CACHE_KEY_ALL].get() as MutableList<SysDic>
|
|
|
cachedList?.let {
|
|
|
it.removeIf { it.id == sysDic.id }
|
|
|
it.add(sysDic)
|
|
|
- cache.put("key_${sysDic.key}", cachedList)
|
|
|
+ cache.put(CACHE_KEY_ALL, cachedList)
|
|
|
}
|
|
|
|
|
|
return sysDic
|
|
|
}
|
|
|
|
|
|
- override fun getOneByKey(key: String, sort: Int): SysDic? {
|
|
|
- val result = baseMapper.selectList(key, true)
|
|
|
+ override fun getOneByKey(key: String, value: String?, sort: Int?): SysDic? {
|
|
|
+ val result = baseMapper.selectByParams(mutableMapOf(
|
|
|
+ "key" to key,
|
|
|
+ "value" to value!!,
|
|
|
+ "sort" to sort!!,
|
|
|
+ "enable" to true
|
|
|
+ ))
|
|
|
return if (result.size > 0) {
|
|
|
- result.filter { it.sort == sort }[0]
|
|
|
+ result.filter {
|
|
|
+ it.sort == sort && it.value == value
|
|
|
+ }[0]
|
|
|
} else {
|
|
|
null
|
|
|
}
|