go从0到1项目实战体系二十五:config配置文件

1. config配置文件:

BsyErp\Contract\Init\Config.go:

package Init
import (
	"github.com/go-ini/ini"
	"log"
)
const (
	HTTP_METHOD_GET="GET"
	HTTP_METHOD_POST="POST"
)
var(
	SERVER_ADDRESS=":8080"
	MYSQL_DSN=""
	MYSQL_MAXIDLE=10
	MYSQL_MAXCONN=50
	LOGGER_PATH=""
)
// 同一个包多个init函数加载,是按文件顺序来加载的.
func init()  {
	cfg, err := ini.Load("gin.ini")
	if err != nil {
		log.Fatal("config err")
	}

	// muststring 带默认值,这里不能用:=,参考局部变量与全局变量
	SERVER_ADDRESS=cfg.Section("server").Key("port").MustString(":8080")
	// 数据库连接字符串
	MYSQL_DSN=cfg.Section("mysql").Key("dsn").String()
	// 最大空闲连接
	MYSQL_MAXIDLE=cfg.Section("mysql").Key("maxidle").MustInt(10)
	// 最大连接数
	MYSQL_MAXCONN=cfg.Section("mysql").Key("maxconn").MustInt(50)
	// 日志文件
	LOGGER_PATH=cfg.Section("logger").Key("path").MustString("./gin-log.log")
}

你可能感兴趣的:(golang,android,开发语言)