spf13 viper代码示例

莫名FCJ · · 2092 次点击 · · 开始浏览    
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

代码

https://github.com/fengchunjian/goexamples/viper

//main.go
package main

import (
    "fmt"
    "github.com/spf13/viper"
    "os"
    "strings"
)

const cmdRoot = "core"

func main() {
    viper.SetEnvPrefix(cmdRoot)
    viper.AutomaticEnv()
    replacer := strings.NewReplacer(".", "_")
    viper.SetEnvKeyReplacer(replacer)
    viper.SetConfigName(cmdRoot)
    viper.AddConfigPath("./")

    err := viper.ReadInConfig()
    if err != nil {
        fmt.Println(fmt.Errorf("Fatal error when reading %s config file:%s", cmdRoot, err))
        os.Exit(1)
    }

    environment := viper.GetBool("security.enabled")
    fmt.Println("security.enabled:", environment)

    fullstate := viper.GetString("statetransfer.timeout.fullstate")
    fmt.Println("statetransfer.timeout.fullstate:", fullstate)

    abcdValue := viper.GetString("peer.abcd")
    fmt.Println("peer.abcd:", abcdValue)
}

//core.yaml
statetransfer:
    recoverdamage: true
    blocksperrequest: 20
    maxdeltas: 200
    timeout:
        singleblock: 2s
        singlestatedelta: 2s
        fullstate: 60s
peer:
    abcd:   3322d

编译

go get github.com/spf13/viper
go build -o vip

处理go get github.com/spf13/viper过程中问题

unrecognized import path "golang.org/x/sys/unix"
unrecognized import path "golang.org/x/text/transform"
unrecognized import path "golang.org/x/text/unicode/norm"
解决办法:
git clone https://github.com/golang/sys.git $GOPATH/src/golang.org/x/sys
git clone https://github.com/golang/text.git $GOPATH/src/golang.org/x/text

运行

CORE_SECURITY_ENABLED=true ./vip
security.enabled: true
statetransfer.timeout.fullstate: 60s
peer.abcd: 3322d

参考文档

golang插件viper
http://blog.csdn.net/qq_27809391/article/details/54091977


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

本文来自:简书

感谢作者:莫名FCJ

查看原文:spf13 viper代码示例

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

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