-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1.优化 Spring Cache 配置 2.暂时移除 Jackson 针对数值类型:Long、BigInteger、BigDecimal 的 toString 处理(TreeUtil 疑似在字符串类型 parentId 时会出现转换异常)
- Loading branch information
Showing
14 changed files
with
181 additions
and
105 deletions.
There are no files selected for viewing
102 changes: 102 additions & 0 deletions
102
...ew-admin-common/src/main/java/top/charles7c/cnadmin/common/config/RedisConfiguration.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
/* | ||
* Copyright (c) 2022-present Charles7c Authors. All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package top.charles7c.cnadmin.common.config; | ||
|
||
import java.util.Map; | ||
|
||
import lombok.RequiredArgsConstructor; | ||
import lombok.extern.slf4j.Slf4j; | ||
|
||
import org.redisson.codec.JsonJacksonCodec; | ||
import org.redisson.spring.starter.RedissonAutoConfigurationCustomizer; | ||
import org.springframework.boot.autoconfigure.cache.CacheProperties; | ||
import org.springframework.cache.annotation.CachingConfigurerSupport; | ||
import org.springframework.cache.annotation.EnableCaching; | ||
import org.springframework.cache.interceptor.KeyGenerator; | ||
import org.springframework.context.annotation.Bean; | ||
import org.springframework.context.annotation.Configuration; | ||
import org.springframework.data.redis.cache.RedisCacheConfiguration; | ||
import org.springframework.data.redis.serializer.*; | ||
|
||
import com.fasterxml.jackson.annotation.JsonTypeInfo; | ||
import com.fasterxml.jackson.databind.ObjectMapper; | ||
|
||
import cn.hutool.core.map.MapUtil; | ||
import cn.hutool.core.util.StrUtil; | ||
import cn.hutool.crypto.digest.DigestUtil; | ||
import cn.hutool.json.JSONUtil; | ||
|
||
/** | ||
* Redis 配置 | ||
* | ||
* @author Charles7c | ||
* @since 2022/12/28 23:17 | ||
*/ | ||
@Slf4j | ||
@EnableCaching | ||
@Configuration | ||
@RequiredArgsConstructor | ||
public class RedisConfiguration extends CachingConfigurerSupport { | ||
|
||
private final ObjectMapper objectMapper; | ||
|
||
/** | ||
* Redisson 自定义配置 | ||
*/ | ||
@Bean | ||
public RedissonAutoConfigurationCustomizer redissonCustomizer() { | ||
// 解决序列化乱码问题 | ||
return config -> config.setCodec(new JsonJacksonCodec(objectMapper)); | ||
} | ||
|
||
/** | ||
* 解决 Spring Cache(@Cacheable)缓存乱码问题 | ||
*/ | ||
@Bean | ||
public RedisCacheConfiguration redisCacheConfiguration(CacheProperties cacheProperties) { | ||
ObjectMapper objectMapperCopy = | ||
objectMapper.copy().enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL, JsonTypeInfo.As.PROPERTY); | ||
RedisCacheConfiguration redisCacheConfiguration = RedisCacheConfiguration.defaultCacheConfig() | ||
.serializeKeysWith(RedisSerializationContext.SerializationPair.fromSerializer(new StringRedisSerializer())) | ||
.serializeValuesWith(RedisSerializationContext.SerializationPair | ||
.fromSerializer(new GenericJackson2JsonRedisSerializer(objectMapperCopy))); | ||
CacheProperties.Redis redisCacheProperties = cacheProperties.getRedis(); | ||
if (null != redisCacheProperties.getTimeToLive()) { | ||
redisCacheConfiguration = redisCacheConfiguration.entryTtl(redisCacheProperties.getTimeToLive()); | ||
} | ||
if (!redisCacheProperties.isCacheNullValues()) { | ||
redisCacheConfiguration = redisCacheConfiguration.disableCachingNullValues(); | ||
} | ||
return redisCacheConfiguration; | ||
} | ||
|
||
/** | ||
* 自定义缓存 key 生成策略(如果 @Cacheable 不指定 key,则默认使用该策略) | ||
*/ | ||
@Bean | ||
@Override | ||
public KeyGenerator keyGenerator() { | ||
return (target, method, params) -> { | ||
String key = StrUtil.toUnderlineCase(method.getName()).toUpperCase(); | ||
Map<String, Object> paramMap = MapUtil.newHashMap(params.length); | ||
for (int i = 0; i < params.length; i++) { | ||
paramMap.put(String.valueOf(i), params[i]); | ||
} | ||
return String.format("%s:%s", key, DigestUtil.sha256Hex(JSONUtil.toJsonStr(paramMap))); | ||
}; | ||
} | ||
} |
52 changes: 0 additions & 52 deletions
52
...admin-common/src/main/java/top/charles7c/cnadmin/common/config/RedissonConfiguration.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.