写点什么

《使用 Gin 框架构建分布式应用》阅读笔记:p20-p31

作者:codists
  • 2024-10-13
    广东
  • 本文字数:469 字

    阅读完需:约 2 分钟

《用 Gin 框架构建分布式应用》学习第 2 天,p20-p31 总结,总计 12 页。

一、技术总结

1.第一个 gin 程序

// main.gopackage main
import "github.com/gin-gonic/gin"
func main() { r := gin.Default() r.GET("/", func(c *gin.Context) { c.JSON(200, gin.H{ "message": "Hello World", }) }) err := r.Run() if err != nil { return } // listen and serve on 0.0.0.0:8080}
复制代码


  • go module


  go mod init hello-world
复制代码


  • go run


  go run main.go
复制代码

二、英语总结

无。

三、其它

使用 WSL 时需要注意:


1.环境变量(用户变量+系统变量)会影响到 WSL 系统的环境变量(env)。


2.WSL + VSCode 搭建 Go 开发环境:可以读取到 windows 系统上的项目。


3.WSL + Goland 搭建 Go 开发环境:无法读取到 windows 系统上的项目。

四、参考资料

1. 编程

(1) Mohamed Labouardy,《Building Distributed Applications in Gin》:https://book.douban.com/subject/35610349

2. 英语

(1) Etymology Dictionary:https://www.etymonline.com


(2) Cambridge Dictionary:https://dictionary.cambridge.org


欢迎搜索及关注:编程人(a_codists)

用户头像

codists

关注

公众号:编程人 2021-01-14 加入

Life is short, You need Python

评论

发布
暂无评论
《使用Gin框架构建分布式应用》阅读笔记:p20-p31_codists_InfoQ写作社区