将nacos作为go的配置中心和注册中心
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Go to file
loser e384306728 更新 'go.mod' 2 years ago
.idea provider with config type 3 years ago
example 2 years ago
.gitignore 2 years ago
LICENSE Create LICENSE 3 years ago
README.md notify event on remote config changed 3 years ago
config_remote_provider.go notify event on remote config changed 3 years ago
example_config.yaml Nacos AMC or KMS 3 years ago
go.mod 更新 'go.mod' 2 years ago
nacos_manager.go 2 years ago
nacos_options.go Nacos AMC or KMS 3 years ago
nacosprovider.go notify event on remote config changed 3 years ago
viper_manager.go nacos viper remote provider 3 years ago
viper_remote.go notify event on remote config changed 3 years ago

README.md

Viper remote for Nacos

Golang configuration,use to Viper reading from remote Nacos config systems. Viper remote for Naocs.

config_viper := viper.New()

remote.SetOptions(&remote.Option{
   Url:         "localhost",
   Port:        80,
   NamespaceId: "public",
   GroupName:   "DEFAULT_GROUP",
   Config: 	remote.Config{ DataId: "config_dev" },
   Auth:        nil,
})

remote_viper := viper.New()
err := remote_viper.AddRemoteProvider("nacos", "localhost", "")
remote_viper.SetConfigType("yaml")
err = remote_viper.ReadRemoteConfig()    //sync get remote configs to remote_viper instance memory . for example , remote_viper.GetString(key)

if err == nil {
    config_viper = remote_viper
    fmt.Println("used remote viper")
    provider := remote.NewRemoteProvider("yaml")
    respChan := provider.WatchRemoteConfigOnChannel(config_viper)

    go func(rc <-chan bool) {
        for {
            <-rc
            fmt.Printf("remote async: %s", config_viper.GetString("yoyogo.application.name"))
        }
    }(respChan)
}

go func() {
    for {
        time.Sleep(time.Second * 30) // delay after each request
        appName = config_viper.GetString("yoyogo.application.name")
        fmt.Println("sync:" + appName)
    }
}()