配置说明
服务相关配置 server
# 服务相关配置
server:
address: ":3699"
tplPath: "view" # 模板文件路径
staticPrefix: "static" # 静态资源路由前缀
staticPath: "public" # 静态资源目录
staticSuffix: "png,jpg,jpeg,gif,mp4,css,js" # 静态资源文件支持的类型
# 服务相关配置
server:
address: ":3699"
tplPath: "view" # 模板文件路径
staticPrefix: "static" # 静态资源路由前缀
staticPath: "public" # 静态资源目录
staticSuffix: "png,jpg,jpeg,gif,mp4,css,js" # 静态资源文件支持的类型
日志相关配置 log
# 日志相关配置
log:
path: "logs"
name: "log"
model: "file" # console | file
maxAge: 30 # 日志多少天后自动删除, 以天为单位
# 日志相关配置
log:
path: "logs"
name: "log"
model: "file" # console | file
maxAge: 30 # 日志多少天后自动删除, 以天为单位
mysql相关配置 mysql
mysql:
default:
link: "xxx:xxx@tcp(127.0.0.1:3306)/xxx?charset=utf8mb4&parseTime=true&loc=Local"
debug: false #是否开启全局SQL打印
createTime: "delete_time" #创建时间字段名
updateTime: "update_time" #更新时间字段名
deleteTime: "delete_time" #删除时间字段名
maxOpen: 100 #最大打开连接数
maxIdle: 50 #最大空闲连接数
maxIdleTime: 0 #连接在空闲状态下的最大存活时间
maxLifeTime: 0 #连接的最大生命周期,从创建到被关闭的总时间
mysql:
default:
link: "xxx:xxx@tcp(127.0.0.1:3306)/xxx?charset=utf8mb4&parseTime=true&loc=Local"
debug: false #是否开启全局SQL打印
createTime: "delete_time" #创建时间字段名
updateTime: "update_time" #更新时间字段名
deleteTime: "delete_time" #删除时间字段名
maxOpen: 100 #最大打开连接数
maxIdle: 50 #最大空闲连接数
maxIdleTime: 0 #连接在空闲状态下的最大存活时间
maxLifeTime: 0 #连接的最大生命周期,从创建到被关闭的总时间
redis相关配置 redis
redis:
default:
addr: "127.0.0.1:3679"
password: ""
db: 0 #索引
poolSize: 100 #最大连接池
redis:
default:
addr: "127.0.0.1:3679"
password: ""
db: 0 #索引
poolSize: 100 #最大连接池
自定义额外的一些配置写下面 extra
extra:
jwtKey: "think-go"
jwtExpiresAt: 30
extra:
jwtKey: "think-go"
jwtExpiresAt: 30
获取自定义额外配置 tgcfg.Get()
// 返回的是gjson.Result类型,所以需要执行转换类型
tgcfg.Get("jwtKey").String()
tgcfg.Get("jwtExpiresAt").Int()
// 返回的是gjson.Result类型,所以需要执行转换类型
tgcfg.Get("jwtKey").String()
tgcfg.Get("jwtExpiresAt").Int()
获取mysql数据源 tgcfg.GetMySqlSource()
// 返回的是gjson.Result类型,所以需要执行转换类型
tgcfg.GetMySqlSource("default.link").String()
tgcfg.GetMySqlSource("default.maxOpen").Int()
// 返回的是gjson.Result类型,所以需要执行转换类型
tgcfg.GetMySqlSource("default.link").String()
tgcfg.GetMySqlSource("default.maxOpen").Int()
Server和Log中的内容可以直接通过.去取
tgcfg.Config.Server.Address
tgcfg.Config.Log.Path
tgcfg.Config.Server.Address
tgcfg.Config.Log.Path
还可以更新配置
// 比如我们想直接使用tg引擎,不借助框架,那么就不需要有 ``config/config.yaml`` 文件,直接指定配置就可以
tgcfg.Config.Server.Address = ":8808"
engine := tg.New()
engine.Run()
// 比如我们想直接使用tg引擎,不借助框架,那么就不需要有 ``config/config.yaml`` 文件,直接指定配置就可以
tgcfg.Config.Server.Address = ":8808"
engine := tg.New()
engine.Run()