Skip to content

Commit

Permalink
fix: 修复 Spring Cache 配置错误
Browse files Browse the repository at this point in the history
1.Swagger 分组接口缺失
2.Spring Cache 配置错误
  • Loading branch information
Charles7c committed Nov 5, 2023
1 parent 1f7fef5 commit 7b741d5
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,14 @@ spring.data:
# 是否开启 SSL
ssl:
enabled: false
## Spring Cache 配置
cache:
redis:
# 缓存过期时长(单位:毫秒,默认 -1,表示永不过期)
time-to-live: 7200000
# 是否允许缓存空值(默认 true,表示允许,可以解决缓存穿透问题)
cache-null-values: true

--- ### Spring Cache 配置
spring.cache:
redis:
# 缓存过期时长(单位:毫秒,默认 -1,表示永不过期)
time-to-live: 7200000
# 是否允许缓存空值(默认 true,表示允许,可以解决缓存穿透问题)
cache-null-values: true

--- ### Just Auth 配置
justauth:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,14 @@ spring.data:
# 是否开启 SSL
ssl:
enabled: false
## Spring Cache 配置
cache:
redis:
# 缓存过期时长(单位:毫秒,默认 -1,表示永不过期)
time-to-live: 7200000
# 是否允许缓存空值(默认 true,表示允许,可以解决缓存穿透问题)
cache-null-values: true

--- ### Spring Cache 配置
spring.cache:
redis:
# 缓存过期时长(单位:毫秒,默认 -1,表示永不过期)
time-to-live: 7200000
# 是否允许缓存空值(默认 true,表示允许,可以解决缓存穿透问题)
cache-null-values: true

--- ### Just Auth 配置
justauth:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,9 @@ springdoc:
packages-to-scan: ${project.basePackage}.webapi.controller
- group: 'auth'
display-name: '系统认证'
paths-to-match: '/auth/**'
paths-to-match:
- '/auth/**'
- '/oauth/**'
packages-to-scan: ${project.basePackage}.webapi.controller.auth
- group: 'common'
display-name: '通用接口'
Expand Down

0 comments on commit 7b741d5

Please sign in to comment.