12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- package global
- import (
- "eta/eta_docs/config"
- "eta/eta_docs/utils"
- "fmt"
- "github.com/fsnotify/fsnotify"
- "github.com/go-redis/redis/v8"
- oplogging "github.com/op/go-logging"
- "github.com/spf13/viper"
- "gorm.io/gorm"
- "io"
- "github.com/rdlucklib/rdluck_tools/cache"
- )
- var (
- CONFIG config.Config
- LOG *oplogging.Logger
- MYSQL map[string]*gorm.DB
- MYSQL_LOG io.Writer
- DEFAULT_MYSQL *gorm.DB
- Redis *redis.Client
- Rc *cache.Cache
- Re error
- )
- const ConfigFile = "config/config_debug.yaml"
- const ProConfigFile = "config/config.yaml"
- func init() {
- v := viper.New()
- configFilePath := ConfigFile
-
- if !utils.FileIsExist(configFilePath) {
- configFilePath = ProConfigFile
- }
- fmt.Println("configFilePath->", configFilePath)
-
- v.SetConfigFile(configFilePath)
- err := v.ReadInConfig()
- if err != nil {
- panic(fmt.Errorf("读取配置失败,Err: %s \n", err))
- }
-
- v.WatchConfig()
- v.OnConfigChange(func(e fsnotify.Event) {
- fmt.Println("配置文件变更:", e.Name)
- if err := v.Unmarshal(&CONFIG); err != nil {
- fmt.Println("配置重赋值失败,Err:", err)
- }
- fmt.Println(CONFIG)
- })
- if err := v.Unmarshal(&CONFIG); err != nil {
- fmt.Println("配置初始化赋值失败,Err:", err)
- }
- }
|