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> <artifactId>spring-boot-starter-actuator</artifactId>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
</exclusion> </exclusion>
<exclusion>
<artifactId>kryo</artifactId>
<groupId>com.esotericsoftware</groupId>
</exclusion>
</exclusions> </exclusions>
</dependency> </dependency>
<dependency> <!-- jwt -->
<groupId>com.esotericsoftware</groupId>
<artifactId>kryo</artifactId>
<version>5.0.0-RC1</version>
</dependency>
<dependency> <dependency>
<groupId>io.jsonwebtoken</groupId> <groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-api</artifactId> <artifactId>jjwt-api</artifactId>

View File

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

View File

@@ -57,7 +57,7 @@ https://juejin.cn/post/6844903775631572999
</appender> </appender>
<appender name="ERROR" class="ch.qos.logback.core.rolling.RollingFileAppender"> <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"> <filter class="ch.qos.logback.classic.filter.ThresholdFilter">
<level>error</level> <level>error</level>
</filter> </filter>