go使用gin框架之搭建环境
Posted zzxiaoma
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了go使用gin框架之搭建环境相关的知识,希望对你有一定的参考价值。
1、go get -u github.com/gin-gonic/gin
2、建立项目文件夹
3、拷贝初始模板
curl https://raw.githubusercontent.com/gin-gonic/examples/master/basic/main.go > main.go
4、go run main.go
这样就已经搭建完成,我们不使用初始模板,使用自己建立的简单使用gin框架的启动代码。
5、创建自己的文件
package main
import "github.com/gin-gonic/gin"
func main()
r := gin.Default()
r.GET("/ping", func(c *gin.Context)
c.JSON(200, gin.H
"message": "pong",
)
)
r.Run() // 监听并在 0.0.0.0:8080 上启动服务
访问http://localhost:8080/ping
不定义端口号默认就是8080,如果想自定义端口号,使用下面方法。
6、自定义端口
r.Run(":8090")
以上是关于go使用gin框架之搭建环境的主要内容,如果未能解决你的问题,请参考以下文章
Go实战--通过gin-gonic框架搭建restful api服务(github.com/gin-gonic/gin)