said goodbye to gopath let's go mod

2023-10-18 22:59
文章标签 mod go let goodbye gopath said

本文主要是介绍said goodbye to gopath let's go mod,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Go来进行web开发,在其他编程语言中都有对应的开发框架,当然在Go中也有,就是即将要介绍的——iris,它号称为速度最快的Go后端开发框架。在iris的网站文档上,列出该框架具备的一些特点和框架特性,列举如下:

1)聚焦高性能
2)健壮的静态路由支持和通配符子域名支持
3)视图系统支持超过5以上模板
4)支持定制事件的高可扩展性Websocket API
5)带有GC, 内存 & redis 提供支持的会话
6)方便的中间件和插件
7)完整 REST API
8)能定制 HTTP 错误
9)源码改变后自动加载
官网地址:https://iris-go.com/
感谢jetbrain 家族提供的各种编译器,具体的编译器下载安装可以参考如下链接let’s go
本人按照教程下载安装go ide goland
如下是本人基于go mod 实现外部依赖包的导入
1)新建go 项目,选择 goModules 选择项目的根路径,设置对应的代理
在这里插入图片描述
2)新建完项目后会在项目根目录下生成go.mod文件
该文件内容

module item
go 1.13

新建文件main.go

package main
import ("github.com/kataras/iris"
)
func main() {app := iris.New()app.Get("/hello", func(ctx iris.Context) {ctx.JSON(iris.Map{"message": "Hello Iris!"})})app.Run(iris.Addr(":8080")) //8080 监听端口
}

此时编译器爆红,因为原生sdk没有对应的包,鼠标指向iris 会有一个 sync packages of item
在这里插入图片描述
点击该链接
在这里插入图片描述
依赖下载完毕
在这里插入图片描述
点开之前的go.mod 文件会发现配置修改如下

module itemgo 1.13require (github.com/BurntSushi/toml v0.3.1 // indirectgithub.com/Joker/jade v1.0.0 // indirectgithub.com/Shopify/goreferrer v0.0.0-20181106222321-ec9c9a553398 // indirectgithub.com/ajg/form v1.5.1 // indirectgithub.com/aymerick/raymond v2.0.2+incompatible // indirectgithub.com/eknkc/amber v0.0.0-20171010120322-cdade1c07385 // indirectgithub.com/fatih/structs v1.1.0 // indirectgithub.com/flosch/pongo2 v0.0.0-20190707114632-bbf5a6c351f4 // indirectgithub.com/gavv/monotime v0.0.0-20190418164738-30dba4353424 // indirectgithub.com/google/go-querystring v1.0.0 // indirectgithub.com/gorilla/schema v1.1.0 // indirectgithub.com/imkira/go-interpol v1.1.0 // indirectgithub.com/iris-contrib/blackfriday v2.0.0+incompatible // indirectgithub.com/iris-contrib/formBinder v5.0.0+incompatible // indirectgithub.com/iris-contrib/go.uuid v2.0.0+incompatible // indirectgithub.com/iris-contrib/httpexpect v0.0.0-20180314041918-ebe99fcebbce // indirectgithub.com/json-iterator/go v1.1.9 // indirectgithub.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88 // indirectgithub.com/kataras/golog v0.0.10 // indirectgithub.com/kataras/iris v11.1.1+incompatiblegithub.com/klauspost/compress v1.9.7 // indirectgithub.com/mattn/go-colorable v0.1.4 // indirectgithub.com/microcosm-cc/bluemonday v1.0.2 // indirectgithub.com/moul/http2curl v1.0.0 // indirectgithub.com/onsi/ginkgo v1.11.0 // indirectgithub.com/onsi/gomega v1.8.1 // indirectgithub.com/ryanuber/columnize v2.1.0+incompatible // indirectgithub.com/sergi/go-diff v1.1.0 // indirectgithub.com/shurcooL/sanitized_anchor_name v1.0.0 // indirectgithub.com/smartystreets/goconvey v1.6.4 // indirectgithub.com/xeipuuv/gojsonschema v1.2.0 // indirectgithub.com/yalp/jsonpath v0.0.0-20180802001716-5cc68e5049a0 // indirectgithub.com/yudai/gojsondiff v1.0.0 // indirectgithub.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82 // indirectgithub.com/yudai/pp v2.0.1+incompatible // indirectgolang.org/x/crypto v0.0.0-20200109152110-61a87790db17 // indirectgopkg.in/yaml.v2 v2.2.7 // indirect
)

而且生成gosum文件,内容

github.com/BurntSushi/toml v0.3.1 h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ=
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
github.com/Joker/hpp v0.0.0-20180418125244-6893e659854a h1:PiDAizhfJbwZMISZ1Itx1ZTFeOFCml89Ofmz3V8rhoU=
github.com/Joker/hpp v0.0.0-20180418125244-6893e659854a/go.mod h1:MzD2WMdSxvbHw5fM/OXOFily/lipJWRc9C1px0Mt0ZE=
github.com/Joker/jade v1.0.0 h1:lOCEPvTAtWfLpSZYMOv/g44MGQFAolbKh2khHHGu0Kc=
github.com/Joker/jade v1.0.0/go.mod h1:efZIdO0py/LtcJRSa/j2WEklMSAw84WV0zZVMxNToB8=
github.com/Shopify/goreferrer v0.0.0-20181106222321-ec9c9a553398 h1:WDC6ySpJzbxGWFh4aMxFFC28wwGp5pEuoTtvA4q/qQ4=
github.com/Shopify/goreferrer v0.0.0-20181106222321-ec9c9a553398/go.mod h1:a1uqRtAwp2Xwc6WNPJEufxJ7fx3npB4UV/JOLmbu5I0=
github.com/ajg/form v1.5.1 h1:t9c7v8JUKu/XxOGBU0yjNpaMloxGEJhUkqFRq0ibGeU=
github.com/ajg/form v1.5.1/go.mod h1:uL1WgH+h2mgNtvBq0339dVnzXdBETtL2LeUXaIv25U

这篇关于said goodbye to gopath let's go mod的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/235663

相关文章

Go Playground 在线编程环境

For all examples in this and the next chapter, we will use Go Playground. Go Playground represents a web service that can run programs written in Go. It can be opened in a web browser using the follow

go基础知识归纳总结

无缓冲的 channel 和有缓冲的 channel 的区别? 在 Go 语言中,channel 是用来在 goroutines 之间传递数据的主要机制。它们有两种类型:无缓冲的 channel 和有缓冲的 channel。 无缓冲的 channel 行为:无缓冲的 channel 是一种同步的通信方式,发送和接收必须同时发生。如果一个 goroutine 试图通过无缓冲 channel

如何确定 Go 语言中 HTTP 连接池的最佳参数?

确定 Go 语言中 HTTP 连接池的最佳参数可以通过以下几种方式: 一、分析应用场景和需求 并发请求量: 确定应用程序在特定时间段内可能同时发起的 HTTP 请求数量。如果并发请求量很高,需要设置较大的连接池参数以满足需求。例如,对于一个高并发的 Web 服务,可能同时有数百个请求在处理,此时需要较大的连接池大小。可以通过压力测试工具模拟高并发场景,观察系统在不同并发请求下的性能表现,从而

【Go】go连接clickhouse使用TCP协议

离开你是傻是对是错 是看破是软弱 这结果是爱是恨或者是什么 如果是种解脱 怎么会还有眷恋在我心窝 那么爱你为什么                      🎵 黄品源/莫文蔚《那么爱你为什么》 package mainimport ("context""fmt""log""time""github.com/ClickHouse/clickhouse-go/v2")func main(

Go Select的实现

select语法总结 select对应的每个case如果有已经准备好的case 则进行chan读写操作;若没有则执行defualt语句;若都没有则阻塞当前goroutine,直到某个chan准备好可读或可写,完成对应的case后退出。 Select的内存布局 了解chanel的实现后对select的语法有个疑问,select如何实现多路复用的,为什么没有在第一个channel操作时阻塞 从而导

Go Channel的实现

channel作为goroutine间通信和同步的重要途径,是Go runtime层实现CSP并发模型重要的成员。在不理解底层实现时,经常在使用中对channe相关语法的表现感到疑惑,尤其是select case的行为。因此在了解channel的应用前先看一眼channel的实现。 Channel内存布局 channel是go的内置类型,它可以被存储到变量中,可以作为函数的参数或返回值,它在r

Go 数组赋值问题

package mainimport "fmt"type Student struct {Name stringAge int}func main() {data := make(map[string]*Student)list := []Student{{Name:"a",Age:1},{Name:"b",Age:2},{Name:"c",Age:3},}// 错误 都指向了最后一个v// a

Go组合

摘要 golang并非完全面向对象的程序语言,为了实现面向对象的继承这一神奇的功能,golang允许struct间使用匿名引入的方式实现对象属性方法的组合 组合使用注意项 使用匿名引入的方式来组合其他struct 默认优先调用外层方法 可以指定匿名struct以调用内层方法 代码 package mainimport ("fmt")type People struct{}type Pe

Go语言构建单链表

package mainimport "fmt"type ListNode struct {Val intNext *ListNode}func main() {list := []int{2,4,3}head := &ListNode{Val:list[0]}tail := head //需要头尾两个指针for i:=1;i<len(list);i++ {//方法一 数组直接构建链表tai

Go 在orm中使用反射

作为静态语言,golang 稍显笨拙,还好 go 的标准包reflect(反射)包弥补了这点不足,它提供了一系列强大的 API,能够根据执行过程中对象的类型来改变程序控制流。本文将通过设计并实现一个简易的 mysql orm 来学习它,要求读者了解mysql基本知识,并且跟我一样至少已经接触 golang 两到三个月。 orm 这个概念相信同学们都非常熟悉,尤其是写过rails的同学,对acti