vipper解析json踩坑(目前用的v2版本), mapstructure要对应

bobo1990 · · 1676 次点击 · 开始浏览    置顶
这是一个创建于 的主题,其中的信息可能已经有所发展或是发生改变。

> :exclamation: 踩坑:json当中带下划线的键值,无法解析到对应的struct当中,必须加上标签:mapstructure ```go package main import ( "fmt" "github.com/spf13/viper" "time" ) // Config 所有配置;viper反序列化:mapstructure是个关键词,做序列化 type Config struct { App AppConfig `json:"app" mapstructure:"app"` Mysql MysqlConfig `json:"mysql" mapstructure:"mysql"` Redis RedisConfig `json:"redis" mapstructure:"redis"` } type AppConfig struct { Timezone string `json:"timezone" mapstructure:"timezone"` RunMode string `json:"run_mode" mapstructure:"run_mode"` } type MysqlConfig struct { Host string `json:"host" mapstructure:"host"` Port string `json:"port" mapstructure:"port"` User string `json:"user" mapstructure:"user"` Password string `json:"password" mapstructure:"password"` Database string `json:"database" mapstructure:"database"` Charset string `json:"charset" mapstructure:"charset"` MaxIdleConn int `json:"max_idle_conn" mapstructure:"max_idle_conn"` //设置空闲状态下的最大连接数 MaxOpenConn int `json:"max_open_conn" mapstructure:"max_open_conn"` //设置与数据库的最大打开连接数 ConnMaxLifetime int `json:"conn_max_lifetime" mapstructure:"conn_max_lifetime"` //设置可重复使用连接的最长时间 } var ( GlobalConfig Config ) func main(){ InitConfig("conf/config.local.json") } // InitConfig 初始化配置文件 func InitConfig(configPath string) { config := viper.New() config.SetConfigType("json") if configPath != "" { config.SetConfigFile(configPath) } else { config.SetConfigFile("conf/config.local.json") } if err := config.ReadInConfig(); err != nil { fmt.Println("加载配置错误", err.Error()) if _, ok := err.(viper.ConfigFileNotFoundError); ok { // 配置文件未找到错误;如果需要可以忽略 panic("未找到配置文件") } else { // 配置文件被找到,但产生了另外的错误 fmt.Println("读取配置文件发生其他错误", err) panic("读取配置文件出错") } } if err := config.Unmarshal(&GlobalConfig); err != nil { fmt.Println(err) } fmt.Println("全部配置", GlobalConfig) } ```

有疑问加站长微信联系(非本文作者)

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

1676 次点击  
加入收藏 微博
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传