Skip to content

环境搭建

工程搭建

工程名录: gin-demo
过程参考: - 工程建设
中文文档: https://gin-gonic.com/zh-cn/
源码地址: https://gitee.com/fly2world_admin/gin-demo.git

附:将 “.” 安装到工程,查看 go.work文件

shell
go 1.19

use (
	./order
	./user
	.
)

gin安装

go get 方式安装gin:

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

Hello World

go
package main

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

func main() {
	router := gin.Default() //默认引擎

	router.GET("/", func(c *gin.Context) {
		c.JSON(200, gin.H{
			"msg": "hello world!",
		})
	})

	router.Run(":8000") //启动服务
}

运行:

shell
go run main.go

浏览器访问:

shell
http://localhost:8000/

成功!