golang使用Viper的demo

栏目: Go · 发布时间: 6年前

获取配置例子

package main

import (
    "flag"
    "fmt"
    "runtime"

    "github.com/spf13/viper"
)
type Config struct {
    Base BaseConf `mapstructure:"base"`
}

type BaseConf struct {
    pidfile   string `mapstructure:"pidfile"`
}

var (
    Conf     *Config
    confPath string
)

func init() {
    flag.StringVar(&confPath, "d", "./", " set logic config file path")
}

func InitConfig() (err error) {
    Conf = NewConfig()
    viper.SetConfigName("logic") // 配置文件的名字
    viper.SetConfigType("toml") // 配置文件的类型
    viper.AddConfigPath(confPath) // 配置文件的路径

    if err := viper.ReadInConfig(); err != nil {
        return err
    }

    if err := viper.Unmarshal(&Conf); err != nil {
        panic(fmt.Errorf("unable to decode into struct:  %s \n", err))
    }

    return nil
}

func NewConfig() *Config {
    return &Config{
        Base: BaseConf{
            Pidfile:   "/tmp/comet.pid",
        },
    }
}

# toml 文件内容为
[base]
pidfile = "/tmp/logic.pid"

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

集体智慧编程

集体智慧编程

Toby Segaran / 莫映、王开福 / 电子工业出版社 / 2015-3 / 79.00元

《集体智慧编程》以机器学习与计算统计为主题背景,专门讲述如何挖掘和分析Web 上的数据和资源,如何分析用户体验、市场营销、个人品味等诸多信息,并得出有用的结论,通过复杂的算法来从Web 网站获取、收集并分析用户的数据和反馈信息,以便创造新的用户价值和商业价值。全书内容翔实,包括协作过滤技术(实现关联产品推荐功能)、集群数据分析(在大规模数据集中发掘相似的数据子集)、搜索引擎核心技术(爬虫、索引、查......一起来看看 《集体智慧编程》 这本书的介绍吧!

随机密码生成器
随机密码生成器

多种字符组合密码

Markdown 在线编辑器
Markdown 在线编辑器

Markdown 在线编辑器

正则表达式在线测试
正则表达式在线测试

正则表达式在线测试