GoLang搭建gin项目

1.在目录中创建以下三个文件

2.配置环境

GOPROXY=https://goproxy.io,direct

3.下载gin

go get -u github.com/gin-gonic/gin

4.初始化mod

go mod init example.com/m

5.创建main.go

扫描二维码关注公众号,回复: 12511174 查看本文章
package main

import (
	"github.com/gin-gonic/gin"
	"net/http"
)

func main() {
	// 1.创建路由
	r := gin.Default()
	// 2.绑定路由规则,执行的函数
	// gin.Context,封装了request和response
	r.GET("/", func(c *gin.Context) {
		c.String(http.StatusOK, "hello World!")
	})
	// 3.监听端口,默认在8080
	// Run("里面不指定端口号默认为8080")
	r.Run(":8000")
}

6.当前目录结构

7.运行

go run main.go

8.打开浏览器访问

http://localhost:8080/

大功告成

猜你喜欢

转载自blog.csdn.net/weixin_43101671/article/details/112966405