type ServerConfig struct {
URL string
Timeout time.Duration
Size int
A int
B int
C int
}
ServerConfig 是从配置文件反序列化出来的,里面的变量如果配置文件没有提供的话,很多变量都是零值, 但是我期望里面的很多变量都是我自己定义的一个默认值。
我现在的做法是反序列化后再一个一个的判断,如果是零值,就改成我期望的值,这样感觉比较麻烦,有什么其他更好的方法吗?
1
blackcurrant 350 天前
使用 viper 读取配置。
然后类似这样定义 type RPCConfig struct { Host string `mapstructure:"host"` Port int `mapstructure:"port"` // 使用默认值 Timeout int `mapstructure:"timeout,default=30"` } |
2
mornlight 350 天前
做配置管理的第三方库很多都支持 default tag 。
如果觉得不好用可以先用这个库 Set 一遍 github.com/creasty/defaults |
3
8X96ZltB8D7WggD7 349 天前
先赋默认值,再反序列化
|
4
CyJaySong 349 天前 2
|
5
yuancoder 349 天前
一般是通过 tag 实现的
|
6
ikaros 349 天前
我的看法是为了这么简单的需求引入一个新的库不值(你甚至只用了他的很少功能),如果是基于 tag 的反射还影响性能, 个人解决方法偏向于给这个 struct 写个 SetDefaultValue 的方法,unmarshal 完之后调用一下
|
7
ding2dong 349 天前 1
func GetDefaultServerConfig() ServerConfig {
return ServerConfig{ // 你的一些默认值... } } //读取配置 serverConfig := GetDefaultServerConfig() json.Unmarshal([]byte(jsonStr), &serverConfig) |
9
dw2693734d 349 天前
@CyJaySong 这种比较简单,我也这样用
|
10
fo0o7hU2tr6v6TCe 349 天前
https://blog.51cto.com/hongchen99/4520434 tag 实现,重写方法?
|
11
CzaOrz 349 天前
看着有点眼熟,可以参考我自己写的一个工具库,原理就是基于反射解析 Tag 然后赋值即可:
- https://github.com/czasg/go-fill ```go // 依赖 import "github.com/czasg/go-fill" // 准备结构体 type Config struct { Host string `fill:"HOST,default=localhost"` Port int `fill:"PORT,default=5432"` User string `fill:"USER,default=root"` Password string `fill:"PASSWORD,default=root"` } // 初始化 cfg := Config{} // 填充环境变量 _ = fill.FillEnv(&cfg) ``` |
12
yujianwjj OP ```
type Config struct { ServerConfigs []ServerConfig } ``` 如果 先赋默认值,再反序列化的话。针对这个情况咋搞? |
13
fantastM 349 天前
@yujianwjj #12 如果解析的是 yaml 配置的话,可以试试这种方式
https://github.com/go-yaml/yaml/issues/165#issuecomment-255223956 |