golang使用viper加載配置文件實(shí)現(xiàn)自動(dòng)反序列化到結(jié)構(gòu)
正文
- golang使用 viper 無需設(shè)置 mapstructure tag 根據(jù)配置文件后綴 自動(dòng)返序列化到結(jié)構(gòu)
- 解決結(jié)構(gòu)有下劃線的字段解析不成功問題
viper 正常加載配置文件
golang viper 其中可以用來 查找、加載和反序列化JSON、TOML、YAML、HCL、INI、envfile和格式的配置文件
配置文件 test_toml.toml
http_addr = ":8082" grpc_addr = ":8083" jaeger_url= "http://localhost:14268/api/traces" tracing= true
golang代碼
type ConfigTest struct {
HttpAddr string `json:"http_addr" toml:"http_addr" yaml:"http_addr"`
GrpcAddr string `json:"grpc_addr" toml:"grpc_addr" yaml:"grpc_addr"`
JaegerUrl string `json:"jaeger_url" toml:"jaeger_url" yaml:"jaeger_url" mapstructure:"jaeger_url"`
Tracing bool `toml:"tracing" json:"tracing" yaml:"tracing" ` // opentelemetry tracing
}
// jaeger 加載配置文件
func TestSourceFile_Unmarshal(t *testing.T) {
filePath := "./test_toml.toml"
viper.SetConfigFile(filePath)
if err := viper.ReadInConfig(); err != nil {
t.Error(err)
}
c := &ConfigTest{}
if err := viper.Unmarshal(c); err != nil {
t.Error(err)
}
logger.Infow("Unmarshal file sucess", "v", c)
}打印返序列化的配置結(jié)構(gòu)
{"level":"info","ts":"2023-08-27T21:35:27.041+0800","caller":"config/source_file_test.go:31","msg":"Unmarshal file sucess","v":{"http_addr":"","grpc_addr":"","jaeger_url":"http://localhost:14268/api/traces","tracing":true}}
可以看到帶下劃線的字段,不加 mapstructure 標(biāo)簽,是不會(huì)反序列化
不加 mapstructure tag實(shí)現(xiàn)自動(dòng)反序列化
查看viper Unmarshal 代碼
func (v *Viper) Unmarshal(rawVal interface{}, opts ...DecoderConfigOption) error {
return decode(v.AllSettings(), defaultDecoderConfig(rawVal, opts...))
}
func decode(input interface{}, config *mapstructure.DecoderConfig) error {
decoder, err := mapstructure.NewDecoder(config)
if err != nil {
return err
}
return decoder.Decode(input)
}
func NewDecoder(config *DecoderConfig) (*Decoder, error) {
if config.TagName == "" {
config.TagName = "mapstructure"
}
// ...
}- 從代碼看出 Viper使用的是 github.com/mitchellh/mapstructure來解析值
- mapstructure 用于將通用的map[string]interface{}解碼到對(duì)應(yīng)的 Go 結(jié)構(gòu)體中
- 默認(rèn)情況下,mapstructure 使用結(jié)構(gòu)體中字段的名稱做這個(gè)映射,不區(qū)分大小寫,比如 Name 字段可以映射到 name、NAME、NaMe 等等
- 如果沒有指定 tagName ,則默認(rèn)為 mapstructure,這也是為什么帶下劃線的字段不加 mapstructure 標(biāo)簽無法解析的原因
- viper 中Unmarshal的第二個(gè)參數(shù)是可以指定 DecoderConfigOption ,從而可以指定 tagName
viper根據(jù)文類型件自動(dòng)解碼到結(jié)構(gòu)
- 讀取文件后綴比如 toml
- 根據(jù)后綴設(shè)置 tagName
- 調(diào)用 viper.Unmarshal解析
func TestSourceFile_Unmarshal1(t *testing.T) {
filePath := "./test_toml.toml"
c := &ConfigTest{}
if err := viperUnmarshal(c, filePath); err != nil {
t.Error(err)
}
logger.Infow("Unmarshal file sucess", "v", c)
}
func viperUnmarshal(v interface{}, configPath string) error {
var tagName string
ext := filepath.Ext(configPath)
if len(ext) > 1 {
tagName = ext[1:]
}
// set decode tag_name, default is mapstructure
decoderConfigOption := func(c *mapstructure.DecoderConfig) {
c.TagName = tagName
}
cViper := viper.New()
cViper.SetConfigFile(configPath)
if err := cViper.ReadInConfig(); err != nil {
return err
}
return cViper.Unmarshal(v, decoderConfigOption)
}結(jié)果:
{"level":"info","ts":"2023-08-27T21:35:34.553+0800","caller":"config/source_file_test.go:40","msg":"Unmarshal file sucess","v":{"http_addr":":8082","grpc_addr":":8083","jaeger_url":"http://localhost:14268/api/traces","tracing":true}}
我已將viper加載配置集成進(jìn)自己的項(xiàng)目,完整example 代碼可以查看 source_file_test.go
以上就是golang 使用 viper 加載配置文件 自動(dòng)反序列化到結(jié)構(gòu)的詳細(xì)內(nèi)容,更多關(guān)于golang viper 加載配置文件 自動(dòng)反序列化到結(jié)構(gòu)的資料請(qǐng)關(guān)注腳本之家其它相關(guān)文章!
相關(guān)文章
Golang?WorkerPool線程池并發(fā)模式示例詳解
這篇文章主要為大家介紹了Golang?WorkerPool線程池并發(fā)模式示例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪2022-08-08
vscode配置go開發(fā)環(huán)境的實(shí)戰(zhàn)過程
vscode配置go的開發(fā)環(huán)境很簡單,下面這篇文章主要給大家介紹了關(guān)于vscode配置go開發(fā)環(huán)境的實(shí)戰(zhàn)過程,文中通過實(shí)例代碼介紹的非常詳細(xì),需要的朋友可以參考下2022-06-06
Golang?range?slice?與range?array?之間的區(qū)別
這篇文章主要介紹了Golang?range?slice?與range?array?之間的區(qū)別,文章圍繞主題展開詳細(xì)的內(nèi)容介紹,具有一定的參考價(jià)值,需要的小伙伴可以參考一下2022-07-07
Golang算法之田忌賽馬問題實(shí)現(xiàn)方法分析
這篇文章主要介紹了Golang算法之田忌賽馬問題實(shí)現(xiàn)方法,結(jié)合具體實(shí)例形式分析了基于Go語言的田忌賽馬問題原理與算法實(shí)現(xiàn)技巧,需要的朋友可以參考下2017-02-02

