1 Star 1 Fork 0

吴文凯/core-go

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
file.go 1.04 KB
一键复制 编辑 原始数据 按行查看 历史
[email protected] 提交于 2021-09-15 13:07 . update find file
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)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/whilew/core-go.git
[email protected]:whilew/core-go.git
whilew
core-go
core-go
main

搜索帮助