如何在Viper中设置必填字段?

问题描述

我使用Viper https://github.com/spf13/viper在GO应用程序中管理项目配置。 还将配置值解编为结构。

var config c.Configuration // Configuration is my configuration struct

err := viper.Unmarshal(&config)

当我错过.yml配置文件中的某些配置时,在拆组期间不会抛出任何错误(如我所猜)。

那么我该如何强制实施所有配置?如果struct中的任何字段在yaml中都没有值,我想查看错误

解决方法

您可以将 validator package 与 viper 集成在一起,以便您可以检查任何缺少的配置。附上我的工作代码的代码片段和配置屏幕截图。

package config

import (
    "github.com/go-playground/validator/v10"
    "github.com/spf13/viper"
    "log"
)

type Configuration struct {
    Server struct {
        Application string `yaml:"application" validate:"required"`
    } `yaml:"server"`
}

var config Configuration

func GetConfig() *Configuration {
    return &config
}

func init() {

    vp := viper.New()
    vp.SetConfigName("config") // name of config file (without extension)
    vp.SetConfigType("yaml")   // REQUIRED if the config file does not have the extension in the name
    vp.AddConfigPath(".")
    if err := vp.ReadInConfig(); err!=nil {
        log.Fatalf("Read error %v",err)
    }
    if err := vp.Unmarshal(&config); err!=nil {
        log.Fatalf("unable to unmarshall the config %v",err)
    }
    validate := validator.New()
    if err := validate.Struct(&config); err!=nil{
        log.Fatalf("Missing required attributes %v\n",err)
    }
}

我的财产截图 property configuration

缺少属性错误 Missing property error