详解 golang 中Gin开发的三种开发模式
gin目前是golang最流行的开发框架,这个框架给我们提供了三种环境模式:
- gin.DebugMode DebugMode表示gin模式为debug 开发模式
- gin.ReleaseMode ReleaseMode表示gin模式为release 生产环境模式
- gin.TestMode TestMode表示gin模式为test 测试环境模式
const (
// DebugMode indicates gin mode is debug.
DebugMode = "debug"
// ReleaseMode indicates gin mode is release.
ReleaseMode = "release"
// TestMode indicates gin mode is test.
TestMode = "test"
)
gin开发模式如果不做设置,默认是 degbug模式,如果需要切换模式可以直接用以下代码切换:
- 设置成开发模式:gin.SetMode(gin.DebugMode)
- 设置成生产环境模式:gin.SetMode(gin.ReleaseMode)
- 设置成测试环境模式:gin.SetMode(gin.TestMode)
注意:如果项目要发布上线,切记切换到生产环境模式
如果不加此行代码,打包后启动服务时,控制台会输出:
提示我们设置环境变量或在代码中设置成生产模式
gin三种mode分别对应了不同的场景,在我们开发调试过程中用DebugMode,使用debug模式,在项目上线的时候一定要选择ReleaseMode模式。而测试时可以用TestMode模式
本文来自博客园,作者:Carver-大脸猫,转载请注明原文链接:https://www.cnblogs.com/carver/articles/17115364.html