global.go 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. package global
  2. import (
  3. "fmt"
  4. "github.com/fsnotify/fsnotify"
  5. "github.com/go-redis/redis/v8"
  6. oplogging "github.com/op/go-logging"
  7. "github.com/spf13/viper"
  8. "gorm.io/gorm"
  9. "hongze/hz_crm_eta/config"
  10. "hongze/hz_crm_eta/utils"
  11. "io"
  12. "github.com/rdlucklib/rdluck_tools/cache"
  13. )
  14. var (
  15. CONFIG config.Config //配置文件
  16. LOG *oplogging.Logger
  17. MYSQL map[string]*gorm.DB //数据库连接配置
  18. MYSQL_LOG io.Writer
  19. DEFAULT_MYSQL *gorm.DB //默认数据库连接配置
  20. Redis *redis.Client //redis链接
  21. Rc *cache.Cache //redis缓存
  22. Re error //redis错误
  23. )
  24. const ConfigFile = "config/config_debug.yaml" //本地(测试)环境下的配置文件地址
  25. const ProConfigFile = "config/config.yaml" //生产环境下的配置文件地址
  26. func init() {
  27. v := viper.New()
  28. configFilePath := ConfigFile
  29. //如果不存在该配置文件,那么应该是线上环境,那么去寻找线上配置文件的路径
  30. if !utils.FileIsExist(configFilePath) {
  31. configFilePath = ProConfigFile
  32. }
  33. fmt.Println("configFilePath->", configFilePath)
  34. //设置配置文件
  35. v.SetConfigFile(configFilePath)
  36. err := v.ReadInConfig()
  37. if err != nil {
  38. panic(fmt.Errorf("读取配置失败,Err: %s \n", err))
  39. }
  40. //持续监听文件
  41. v.WatchConfig()
  42. v.OnConfigChange(func(e fsnotify.Event) {
  43. fmt.Println("配置文件变更:", e.Name)
  44. if err := v.Unmarshal(&CONFIG); err != nil {
  45. fmt.Println("配置重赋值失败,Err:", err)
  46. }
  47. fmt.Println(CONFIG)
  48. })
  49. if err := v.Unmarshal(&CONFIG); err != nil {
  50. fmt.Println("配置初始化赋值失败,Err:", err)
  51. }
  52. }