跳到主要内容
版本:2.8.x(Latest)

Consul 配置中心示例

Code Source: https://github.com/gogf/examples/tree/main/config/consul

介绍

本示例展示了如何在 GoFrame 应用程序中通过配置管理组件集成 Consul 配置中心。

目录结构

.
├── boot/ # 启动配置
│ └── boot.go # Consul 客户端初始化
├── main.go # 主程序入口
├── go.mod # Go 模块文件
└── go.sum # Go 模块校验和

环境要求

使用说明

  1. 确保 Consul 服务端已启动

  2. 配置 Consul 连接信息:

    consul:
    address: "localhost:8500"
    scheme: "http"
    datacenter: "dc1"
  3. 运行示例:

    go run main.go