|
@@ -1,14 +1,11 @@
|
|
|
package org.jeecg.modules.redis;
|
|
|
|
|
|
-import static org.springframework.data.redis.serializer.RedisSerializationContext.SerializationPair;
|
|
|
-
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
import org.jeecg.modules.adweb.dmp.service.impl.GACountryReportServiceImpl;
|
|
|
import org.springframework.cache.annotation.Cacheable;
|
|
|
import org.springframework.data.redis.cache.*;
|
|
|
-import org.springframework.data.redis.serializer.GenericJackson2JsonRedisSerializer;
|
|
|
|
|
|
import java.time.Duration;
|
|
|
import java.util.Date;
|
|
@@ -26,28 +23,19 @@ import java.util.Date;
|
|
|
public class TTLCacheManager extends RedisCacheManager {
|
|
|
|
|
|
public TTLCacheManager(
|
|
|
- RedisCacheWriter cacheWriter, RedisCacheConfiguration defaultCacheConfiguration) {
|
|
|
- super(cacheWriter, defaultCacheConfiguration);
|
|
|
+ RedisCacheWriter cacheWriter, RedisCacheConfiguration cacheConfiguration) {
|
|
|
+ super(cacheWriter, cacheConfiguration);
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
protected RedisCache createRedisCache(String name, RedisCacheConfiguration cacheConfiguration) {
|
|
|
- // 修改缓存key和value值的序列方式
|
|
|
- cacheConfiguration =
|
|
|
- cacheConfiguration
|
|
|
- .computePrefixWith(cacheName -> cacheName + ":")
|
|
|
- .serializeValuesWith(
|
|
|
- SerializationPair.fromSerializer(
|
|
|
- new GenericJackson2JsonRedisSerializer()));
|
|
|
-
|
|
|
final int idx = StringUtils.lastIndexOf(name, '#');
|
|
|
if (idx > -1) {
|
|
|
- final String ttl = StringUtils.substring(name, idx + 1);
|
|
|
+ long ttl = Long.parseLong(StringUtils.substring(name, idx + 1));
|
|
|
name = StringUtils.substring(name, 0, idx);
|
|
|
|
|
|
// 设置TTL
|
|
|
- cacheConfiguration =
|
|
|
- cacheConfiguration.entryTtl(Duration.ofSeconds(Long.parseLong(ttl)));
|
|
|
+ cacheConfiguration = cacheConfiguration.entryTtl(Duration.ofSeconds(ttl));
|
|
|
}
|
|
|
|
|
|
return super.createRedisCache(name, cacheConfiguration);
|