1: 调整了日志级别和日志路径
2:对cacheutils进行避免私有化
This commit is contained in:
parent
133f1db0fc
commit
fc63643b3f
@ -14,17 +14,23 @@ import java.util.concurrent.Executors;
|
|||||||
*/
|
*/
|
||||||
public class CacheUtils {
|
public class CacheUtils {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 拒绝实例化
|
||||||
|
*/
|
||||||
|
private CacheUtils() {
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 构建异步刷新的 LoadingCache 对象
|
* 构建异步刷新的 LoadingCache 对象
|
||||||
*
|
* <p>
|
||||||
* 注意:如果你的缓存和 ThreadLocal 有关系,要么自己处理 ThreadLocal 的传递,要么使用 {@link #buildCache(Duration, CacheLoader)} 方法
|
* 注意:如果你的缓存和 ThreadLocal 有关系,要么自己处理 ThreadLocal 的传递,要么使用 {@link #buildCache(Duration, CacheLoader)} 方法
|
||||||
*
|
* <p>
|
||||||
* 或者简单理解:
|
* 或者简单理解:
|
||||||
* 1、和“人”相关的,使用 {@link #buildCache(Duration, CacheLoader)} 方法
|
* 1、和“人”相关的,使用 {@link #buildCache(Duration, CacheLoader)} 方法
|
||||||
* 2、和“全局”、“系统”相关的,使用当前缓存方法
|
* 2、和“全局”、“系统”相关的,使用当前缓存方法
|
||||||
*
|
*
|
||||||
* @param duration 过期时间
|
* @param duration 过期时间
|
||||||
* @param loader CacheLoader 对象
|
* @param loader CacheLoader 对象
|
||||||
* @return LoadingCache 对象
|
* @return LoadingCache 对象
|
||||||
*/
|
*/
|
||||||
public static <K, V> LoadingCache<K, V> buildAsyncReloadingCache(Duration duration, CacheLoader<K, V> loader) {
|
public static <K, V> LoadingCache<K, V> buildAsyncReloadingCache(Duration duration, CacheLoader<K, V> loader) {
|
||||||
@ -39,7 +45,7 @@ public class CacheUtils {
|
|||||||
* 构建同步刷新的 LoadingCache 对象
|
* 构建同步刷新的 LoadingCache 对象
|
||||||
*
|
*
|
||||||
* @param duration 过期时间
|
* @param duration 过期时间
|
||||||
* @param loader CacheLoader 对象
|
* @param loader CacheLoader 对象
|
||||||
* @return LoadingCache 对象
|
* @return LoadingCache 对象
|
||||||
*/
|
*/
|
||||||
public static <K, V> LoadingCache<K, V> buildCache(Duration duration, CacheLoader<K, V> loader) {
|
public static <K, V> LoadingCache<K, V> buildCache(Duration duration, CacheLoader<K, V> loader) {
|
||||||
|
@ -119,6 +119,10 @@ spring:
|
|||||||
|
|
||||||
# 日志文件配置
|
# 日志文件配置
|
||||||
logging:
|
logging:
|
||||||
|
level:
|
||||||
|
root: error
|
||||||
|
pattern:
|
||||||
|
console: "%d{yyyy-MM-dd HH:mm:ss:sss} %-5level %logger{36} - %msg%n"
|
||||||
file:
|
file:
|
||||||
name: ${user.home}/logs/${spring.application.name}.log # 日志文件名,全路径
|
name: ${user.home}/logs/${spring.application.name}.log # 日志文件名,全路径
|
||||||
|
|
||||||
|
@ -137,28 +137,22 @@ spring:
|
|||||||
|
|
||||||
# 日志文件配置
|
# 日志文件配置
|
||||||
logging:
|
logging:
|
||||||
|
pattern:
|
||||||
|
console: "%d{yyyy-MM-dd HH:mm:ss:sss} %-5level %logger{36} - %msg%n"
|
||||||
file:
|
file:
|
||||||
name: ${user.home}/logs/${spring.application.name}.log # 日志文件名,全路径
|
name: ${user.home}/logs/${spring.application.name}.log # 日志文件名,全路径
|
||||||
level:
|
level:
|
||||||
|
# root: error
|
||||||
# 配置自己写的 MyBatis Mapper 打印日志
|
# 配置自己写的 MyBatis Mapper 打印日志
|
||||||
cd.casic.module.bpm.dal.mysql: debug
|
cd.casic.module.infra.dal.mysql: info
|
||||||
cd.casic.module.infra.dal.mysql: debug
|
|
||||||
cd.casic.module.infra.dal.mysql.logger.ApiErrorLogMapper: INFO # 配置 ApiErrorLogMapper 的日志级别为 info,避免和 GlobalExceptionHandler 重复打印
|
cd.casic.module.infra.dal.mysql.logger.ApiErrorLogMapper: INFO # 配置 ApiErrorLogMapper 的日志级别为 info,避免和 GlobalExceptionHandler 重复打印
|
||||||
cd.casic.module.infra.dal.mysql.job.JobLogMapper: INFO # 配置 JobLogMapper 的日志级别为 info
|
cd.casic.module.infra.dal.mysql.job.JobLogMapper: INFO # 配置 JobLogMapper 的日志级别为 info
|
||||||
cd.casic.module.infra.dal.mysql.file.FileConfigMapper: INFO # 配置 FileConfigMapper 的日志级别为 info
|
cd.casic.module.infra.dal.mysql.file.FileConfigMapper: INFO # 配置 FileConfigMapper 的日志级别为 info
|
||||||
cd.casic.module.pay.dal.mysql: debug
|
|
||||||
cd.casic.module.pay.dal.mysql.notify.PayNotifyTaskMapper: INFO # 配置 PayNotifyTaskMapper 的日志级别为 info
|
|
||||||
cd.casic.module.system.dal.mysql: debug
|
cd.casic.module.system.dal.mysql: debug
|
||||||
cd.casic.module.system.dal.mysql.sms.SmsChannelMapper: INFO # 配置 SmsChannelMapper 的日志级别为 info
|
cd.casic.module.system.dal.mysql.sms.SmsChannelMapper: INFO # 配置 SmsChannelMapper 的日志级别为 info
|
||||||
cd.casic.module.tool.dal.mysql: debug
|
cd.casic.module.tool.dal.mysql: debug
|
||||||
cd.casic.module.member.dal.mysql: debug
|
|
||||||
cd.casic.module.trade.dal.mysql: debug
|
|
||||||
cd.casic.module.promotion.dal.mysql: debug
|
cd.casic.module.promotion.dal.mysql: debug
|
||||||
cd.casic.module.statistics.dal.mysql: debug
|
cd.casic.module.statistics.dal.mysql: debug
|
||||||
cd.casic.module.crm.dal.mysql: debug
|
org.springframework.context.support.PostProcessorRegistrationDelegate: ERROR # 禁用,Spring Boot 3.X 存在部分错误的 WARN 提示
|
||||||
cd.casic.module.erp.dal.mysql: debug
|
|
||||||
cd.casic.module.iot.dal.mysql: debug
|
|
||||||
cd.casic.module.ai.dal.mysql: debug
|
|
||||||
org.springframework.context.support.PostProcessorRegistrationDelegate: ERROR # TODO 芋艿:先禁用,Spring Boot 3.X 存在部分错误的 WARN 提示
|
|
||||||
|
|
||||||
debug: false
|
debug: false
|
||||||
|
Loading…
x
Reference in New Issue
Block a user