golang 優雅讀取環境變數 env

來源:互聯網
上載者:User
有時候,env會非常多,尤其是現在很多應用都放在doker裡,很多配置都是通過環境變數讀取,所以希望讀取的env能與golang的struct能對應,比如:```CONFIG_APP=ENVAPPCONFIG_DEBUG=1CONFIG_HOSTS=192.168.0.1,127.0.0.1CONFIG_TIMEOUT=5sCONFIG_REDISVERSION=3.2CONFIG_REDIS_HOST=rdbCONFIG_REDIS_PORT=6379CONFIG_MYSQL_HOST=mysqldbCONFIG_MYSQL_PORT=3306```可以通過:```golangimport ("fmt""time""os""github.com/timest/env")type config struct {App stringPort int `default:"8000"`IsDebug bool `env:"DEBUG"`Hosts []string `slice_sep:","`Timeout time.DurationRedis struct {Version string `sep:""` // no sep between `CONFIG` and `REDIS`Host stringPort int}MySQL struct {Version string `default:"5.7"`Host stringPort int}}func main() {cfg := new(config)err := env.Fill(cfg)if err != nil {panic(err)}fmt.Println("Home:", cfg.App)fmt.Println("Port:", cfg.Port)fmt.Println("IsDebug:", cfg.IsDebug)fmt.Println("Hosts:", cfg.Hosts, len(cfg.Hosts))fmt.Println("Duration:", cfg.Timeout)fmt.Println("Redis_Version:", cfg.Redis.Version)fmt.Println("Redis_Host:", cfg.Redis.Host)fmt.Println("Redis_Port:", cfg.Redis.Port)fmt.Println("MySQL_Version:", cfg.MySQL.Version)fmt.Println("MySQL_Name:", cfg.MySQL.Host)fmt.Println("MySQL_port:", cfg.MySQL.Port)}// output:// Home: ENV APP// Port: 8000// IsDebug: true// Hosts: [192.168.0.1 127.0.0.1] 2// Duration: 5s// Redis_Version: 3.2// Redis_Host: rdb// Redis_Port: 6379// MySQL_Version: 5.7// MySQL_Name: mysqldb// MySQL_port: 3306```如果不希望struct的名字作為env的首碼,可以:```APP=ENVAPPDEBUG=1HOSTS=192.168.0.1,127.0.0.1TIMEOUT=5sREDISVERSION=3.2REDIS_HOST=rdbREDIS_PORT=6379MYSQL_HOST=mysqldbMYSQL_PORT=3306``````func main() { cfg := new(config) env.IgnorePrefix() err := env.Fill(cfg) ...}```[https://github.com/timest/env]("github.com/timest/env") 地址。82 次點擊  ∙  1 贊  
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.