代码拉取完成,页面将自动刷新
package conf
import (
"fmt"
"github.com/whileW/core-go/utils"
"os"
"runtime"
"github.com/fsnotify/fsnotify"
"github.com/spf13/viper"
)
//自动查找配置文件--自动上面三级查找配置文件
func initFile(config *Config) {
conf_file_name := utils.IF(os.Getenv("CFNAME") == "", "config", os.Getenv("CFNAME")).(string)
conf_file_type := utils.IF(os.Getenv("CFTYPE") == "", "yaml", os.Getenv("CFNAME")).(string)
v := viper.New()
v.SetConfigName(conf_file_name)
v.SetConfigType(conf_file_type)
v.AddConfigPath("./")
v.AddConfigPath("../")
v.AddConfigPath("../../")
v.AddConfigPath("../../../")
err := v.ReadInConfig()
if err != nil {
panic(fmt.Errorf("Fatal error config file: %v \n", err))
fmt.Println(fmt.Sprintf("Fatal error config file: %v \n", err))
return
}
v.WatchConfig()
v.OnConfigChange(func(e fsnotify.Event) {
fmt.Println("config file changed:", e.Name)
config.AnalysisSetting(v.AllSettings())
})
config.AnalysisSetting(v.AllSettings())
//通过runtime.KeepAlive 保证v不被垃圾回收
runtime.KeepAlive(v)
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。