ginprc 注解路由,自动参数绑定工具
![doc][image/ginrpc_doc.gif]
golang gin 参数自动绑定工具
- 支持对象自动注册及注解路由
- 支持参数自动绑定
- 自带请求参数过滤及绑定实现 binding:“required” validator
- 支持 grpc-go 绑定模式
- 支持swagger 文档导出 MORE
支持多种接口模式
- func(*gin.Context) //go-gin 原始接口
func(*api.Context) //自定义的context类型
func(*api.Context,req) //自定义的context类型,带request 请求参数
func(*gin.Context,*req) //go-gin context类型,带request 请求参数
func(*gin.Context,*req)(*resp,error) //go-gin context类型,带request 请求参数,带错误返回参数 ==> grpc-go
func(*gin.Context,req)(resp,error)
一. 参数自动绑定/对象注册(注解路由)
初始化项目(本项目以ginweb 为名字)
go mod init ginweb
代码
|
|
执行curl,可以自动参数绑定。直接看结果
1
|
curl 'http://127.0.0.1:8080/xxjwxc/block' -H 'Content-Type: application/json' -d '{"access_token":"111", "user_name":"222", "password":"333"}' |
1
|
curl 'http://127.0.0.1:8080/xxjwxc/hello.hello2' -H 'Content-Type: application/json' -d '{"access_token":"111", "user_name":"222", "password":"333"}' |
-注解路由相关说明
1 2 |
// @Router /block [post,get] @Router 标记 /block 路由 [post,get] method 调用方式 |
说明:如果对象函数中不加注解路由,系统会默认添加注解路由。post方式:带req(2个参数(ctx,req)),get方式为一个参数(ctx)
1. 注解路由会自动创建[root]/routers/gen_router.go 文件 需要在调用时加:
1
|
_ "[mod]/routers" // debug模式需要添加[mod]/routers 注册注解路由 |
默认也会在项目根目录生成 gen_router.data
文件(保留此文件,可以不用添加上面代码嵌入)
2. 注册函数说明
1 2 3 4 5 6 7 |
ginrpc.WithCtx : 设置自定义context ginrpc.WithDebug(true) : 设置debug模式 ginrpc.WithGroup("xxjwxc") : 添加路由前缀 (也可以使用gin.Group 分组) ginrpc.WithBigCamel(true) : 设置大驼峰标准(false 为web模式,_,小写) |
2. 注解路由调用demo:ginweb
3. 支持绑定grpc函数: ginweb
二. swagger/markdown/mindoc 文档生成说明
1.对于对象注册ginrpc.Register
模式,支持文档导出
2.导出支持注解路由,支持参数注释,支持默认值(tag
.default
)
3.默认导出路径:(/docs/swagger/swagger.json
,/docs/markdown
)
4 struct demo
1 2 3 4 5 |
type ReqTest struct { AccessToken string `json:"access_token"` UserName string `json:"user_name" binding:"required"` // 带校验方式 Password string `json:"password"` } |
Stargazers over time
下一步
- 添加服务发现