tonglin0325的个人主页

go学习笔记——wire依赖注入

wire是google开源的使用依赖注入来自动连接组件的代码生成工具

安装

1
2
go install github.com/google/wire/cmd/wire@latest

官方使用文档:

https://github.com/google/wire/blob/main/docs/guide.md

文档参考:

手把手,带你从零封装Gin框架(十二):使用 Wire 依赖注入重构

golang中的依赖注入之wire

参考项目:

https://github.com/jassue/gin-wire

如果遇到下面报错

1
2
3
4
wire: /xxx/cmd/server/wire.go:17:1: inject wireApp: unused provider set "ProviderSet"
wire: xx/cmd/server: generate failed
wire: at least one generate failure

这是因为设置了依赖注入的方法没能找到调用者,在gin项目中,调用的顺序一般是data层->service层->handler层->router层->httpserver->app

所以需要把调用的ProviderSet在wire.go文件中完整的写出来,不能出现中间中断的情况,wire_gen才能正常的生成

比如写了data,service,router,httpserver和app,但是漏了handler,这样就会报上面的错误

如果只写了router,httpserver和app,这样是可以正常生成的

可以参考:https://github.com/jassue/gin-wire/blob/main/cmd/app/wire_gen.go 中的调用层次