Browse Source
Merge pull request #704 from iciness/develop
bug修复:jwt黑名单启动时候未加载及未生效
main
奇淼(piexlmax
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
8 additions and
6 deletions
-
server/core/server.go
-
server/core/viper.go
|
|
@ -6,6 +6,7 @@ import ( |
|
|
|
|
|
|
|
"github.com/flipped-aurora/gin-vue-admin/server/global" |
|
|
|
"github.com/flipped-aurora/gin-vue-admin/server/initialize" |
|
|
|
"github.com/flipped-aurora/gin-vue-admin/server/service/system" |
|
|
|
"go.uber.org/zap" |
|
|
|
) |
|
|
|
|
|
|
@ -18,6 +19,12 @@ func RunWindowsServer() { |
|
|
|
// 初始化redis服务
|
|
|
|
initialize.Redis() |
|
|
|
} |
|
|
|
|
|
|
|
// 从db加载jwt数据
|
|
|
|
if global.GVA_DB != nil { |
|
|
|
system.LoadAll() |
|
|
|
} |
|
|
|
|
|
|
|
Router := initialize.Routers() |
|
|
|
|
|
|
|
Router.Static("/form-generator", "./resource/page") |
|
|
|
|
|
@ -7,8 +7,6 @@ import ( |
|
|
|
"path/filepath" |
|
|
|
"time" |
|
|
|
|
|
|
|
"github.com/flipped-aurora/gin-vue-admin/server/service/system" |
|
|
|
|
|
|
|
"github.com/songzhibin97/gkit/cache/local_cache" |
|
|
|
|
|
|
|
"github.com/flipped-aurora/gin-vue-admin/server/global" |
|
|
@ -61,9 +59,6 @@ func Viper(path ...string) *viper.Viper { |
|
|
|
global.GVA_CONFIG.AutoCode.Root, _ = filepath.Abs("..") |
|
|
|
global.BlackCache = local_cache.NewCache( |
|
|
|
local_cache.SetDefaultExpire(time.Duration(global.GVA_CONFIG.JWT.ExpiresTime))) |
|
|
|
// 从db加载jwt数据
|
|
|
|
if global.GVA_DB != nil { |
|
|
|
system.LoadAll() |
|
|
|
} |
|
|
|
|
|
|
|
return v |
|
|
|
} |