尝试使用 go kit 测试微服务中的功能时可能在数据库中出错

我是围棋中微服务的新学习者。我尝试编写自己的微服务。功能很简单。localhost:81/balance/{phone_number}应该返回用户余额的请求是数据库。每当我发送此请求时,我都会看到错误:


    net/http.(*conn).serve.func1(0xc00021a000)

        /usr/local/go/src/net/http/server.go:1767 +0x139

panic(0x8fe8e0, 0xccafc0)

        /usr/local/go/src/runtime/panic.go:679 +0x1b2

github.com/jinzhu/gorm.(*DB).clone(0x0, 0x30)

        /home/bita/go/src/github.com/jinzhu/gorm/main.go:848 +0x26

github.com/jinzhu/gorm.(*DB).Where(0x0, 0x8d6720, 0xa04b40, 0xc0001fe060, 0x1, 0x1, 0xc00019e5d0)

        /home/bita/go/src/github.com/jinzhu/gorm/main.go:235 +0x2f

arvan/wallet/Reository.(*repository).GetBalance(0xc000184c40, 0xa180c0, 0xc0001fa2d0, 0xc00022000d, 0x7, 0xa0f020, 0xc0001fa300, 0x0)

        /home/bita/go/src/arvan/wallet/Reository/repo.go:35 +0xeb

arvan/wallet/pkg/service.service.GetBalance(0xa12f80, 0xc000184c40, 0xa0f020, 0xc00019e5d0, 0xa180c0, 0xc0001fa2d0, 0xc00022000d, 0x7, 0xc0001fa270, 0xc0001d0730, ...)

        /home/bita/go/src/arvan/wallet/pkg/service/service.go:31 +0x116

arvan/wallet/pkg/http.makeGetBalanceEndpoint.func1(0xa180c0, 0xc0001fa2d0, 0x90d160, 0xc0001fe040, 0xc0001fe040, 0x0, 0x0, 0x0)

        /home/bita/go/src/arvan/wallet/pkg/http/endpoint.go:25 +0x72

github.com/go-kit/kit/transport/http.Server.ServeHTTP(0xc000184c80, 0x994260, 0x994270, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9946a8, ...)

        /home/bita/go/src/github.com/go-kit/kit/transport/http/server.go:121 +0x1b2

arvan/wallet/pkg/http.commonMiddleware.func1(0xa17240, 0xc00022e000, 0xc000212300)

        /home/bita/go/src/arvan/wallet/pkg/http/server.go:33 +0x100

net/http.HandlerFunc.ServeHTTP(0xc000200020, 0xa17240, 0xc00022e000, 0xc000212300)

        /usr/local/go/src/net/http/server.go:2007 +0x44

github.com/gorilla/mux.(*Router).ServeHTTP(0xc0000d8540, 0xa17240, 0xc00022e000, 0xc000212100)


我不知道为什么会这样。因为当我尝试使用单体架构时,它一切正常。整个代码的链接在这里


它与上下文有关吗????现在不知道!附言。我所有的代码都受到gokit-tutorial和他在 youtube 上的教程视频的启发。


湖上湖
浏览 99回答 1
1回答

慕森卡

您省略的实际错误消息就在恐慌堆栈跟踪之前:http: panic serving [::1]:53017: runtime error: invalid memory address or nil pointer dereference这是一些指针尚未设置且等于 的提示nil。当深入挖掘时,我发现当请求到达您的方法时,它repo.db没有设置( ) ,这就是它恐慌的原因。== nilGetBalancerepo.db.Where您尝试在main.go文件中设置此字段,您还可以在其中加载数据库:var db *gorm.DB{    dbDriver := "sqlite3"    dbName := "demo.db"    db, err := gorm.Open(dbDriver, dbName)    if err != nil {        _ = level.Error(logger).Log("exit", err)        os.Exit(-1)    }    db.AutoMigrate(&Entity.UserEntity{})}这段代码包含一个微妙的错误,它与变量阴影有关。基本上,您db上面声明的变量与括号中声明的变量不同,{}括号中的变量是一个单独的数据库。您可以通过重命名或不再声明它来解决这个问题(使用:=):var db *gorm.DB{    dbDriver := "sqlite3"    dbName := "demo.db"    dbLoaded, err := gorm.Open(dbDriver, dbName) // Rename the variable    if err != nil {        _ = level.Error(logger).Log("exit", err)        os.Exit(-1)    }    dbLoaded.AutoMigrate(&Entity.UserEntity{})    db = dbLoaded // Set `db` of the outer scope to `dbLoaded` of this scope} // dbLoaded is lost here, but it can be accessed using `db`现在它正确加载了数据库(db不再是nil),并且您的其他模块中的访问现在也可以正常工作。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go