This commit is contained in:
zhangzhiqiang
2023-02-05 21:37:16 +08:00
parent 037c0e67a7
commit c89e370a51
3 changed files with 4 additions and 13 deletions

View File

@@ -349,18 +349,9 @@
<artifactId>spring-boot-starter-actuator</artifactId>
<groupId>org.springframework.boot</groupId>
</exclusion>
<exclusion>
<artifactId>kryo</artifactId>
<groupId>com.esotericsoftware</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.esotericsoftware</groupId>
<artifactId>kryo</artifactId>
<version>5.0.0-RC1</version>
</dependency>
<!-- jwt -->
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-api</artifactId>

View File

@@ -59,8 +59,8 @@ spring:
host: ${REDIS_HOST:127.0.0.1}
port: ${REDIS_PORT:6379}
password: ${REDIS_PWD:}
# redisson:
# config: classpath:/config/redisson.yml
redisson:
config: classpath:/config/redisson.yml
# 登录相关配置
login:

View File

@@ -57,7 +57,7 @@ https://juejin.cn/post/6844903775631572999
</appender>
<appender name="ERROR" class="ch.qos.logback.core.rolling.RollingFileAppender">
<file>${LOG_HOME}/%d{yyyy-MM-dd}.%i.error.log</file>
<file>${LOG_HOME}/%d{yyyy-MM-dd}.error.log</file>
<filter class="ch.qos.logback.classic.filter.ThresholdFilter">
<level>error</level>
</filter>