viper 支持 Yaml、Json、 TOML、HCL 等格式,讀取非常的方便。
viper 官網(wǎng)有案例:https://github.com/spf13/viper
go get github.com/spf13/viper
創(chuàng)建 config.yaml 文件
database:
driver: mysql
host: 127.0.0.1
port: 3306
username: blog
dbname: blog
password: 123456
建一個(gè) config.go 用于初始化配置文件
func InitConfig() {
path, err := os.Getwd()
if err != nil {
panic(err)
}
viper.AddConfigPath(path + "/config/dev")
viper.SetConfigName("config")
viper.SetConfigType("yaml")
if err := viper.ReadInConfig(); err != nil {
panic(err)
}
}
簡(jiǎn)單使用:
username := viper.GetString("database.username")
password := viper.GetString("database.password")
host := viper.GetString("database.host")
port := viper.GetInt("database.port")
dbname := viper.GetString("database.dbname")
dsn := fmt.Sprintf("%s:%s@tcp(%s:%d)/%s?charset=utf8parseTime=Trueloc=Local",username,password,host, port, dbname)
GormPool, err = gorm.Open("mysql", dsn)
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
您可能感興趣的文章:- golang文件讀取-按指定BUFF大小讀取方式
- golang逐行讀取文件的操作
- Golang 實(shí)現(xiàn)分片讀取http超大文件流和并發(fā)控制
- 淺談Golang是如何讀取文件內(nèi)容的(7種)
- 如何利用Golang解析讀取Mysql備份文件
- golang讀取文件的常用方法總結(jié)
- Golang 實(shí)現(xiàn)超大文件讀取的兩種方法