gin 註解路由,自動引數繫結工具
ginprc
golang gin 引數自動繫結工具
- 支援 rpc 自動對映
- 支援物件註冊
- 支援註解路由
- 基於 go-gin 的 json restful 風格的 golang 基礎庫
- 自帶請求引數過濾及繫結實現 binding:"required" validator
- 程式碼註冊簡單且支援多種註冊方式
api 介面說明
支援 3 種介面模式
- func(gin.Context) //go-gin 原始介面
func( api.Context) // 自定義的 context 型別 - func(api.Context,req) // 自定義的 context 型別,帶 request 請求引數
func( api.Context,*req) - func(gin.Context,req) //go-gin context 型別,帶 request 請求引數
func(*gin.Context,req)
示例程式碼
初始化專案 (本專案以 ginweb 為名字)
go mod init ginweb
程式碼 (詳細地址:https://github.com/xxjwxc/ginrpc/tree/master/sample/ginweb)
package main
import (
"fmt"
"net/http"
_ "ginweb/routers" // debug模式需要新增[mod]/routers 註冊註解路由
"github.com/gin-gonic/gin"
"github.com/xxjwxc/ginrpc"
"github.com/xxjwxc/ginrpc/api"
)
type ReqTest struct {
Access_token string json:"access_token"
UserName string json:"user_name" binding:"required"
// 帶校驗方式
Password string json:"password"
}
// Hello ...
type Hello struct {
Index int
}
// Hello 帶註解路由(參考beego形式)
// @router /block [post,get]
func (s *Hello) Hello(c *api.Context, req *ReqTest) {
fmt.Println(req)
fmt.Println(s.Index)
c.JSON(http.StatusOK, "ok")
}
// Hello2 不帶註解路由(引數為2預設post)
func (s *Hello) Hello2(c *gin.Context, req ReqTest) {
fmt.Println(req)
fmt.Println(s.Index)
c.JSON(http.StatusOK, "ok")
}
//TestFun1 gin 預設的函式回撥地址
func TestFun1(c *gin.Context) {
fmt.Println(c.Params)
c.String(200, "ok")
}
//TestFun2 自定義context的函式回撥地址
func TestFun2(c *api.Context) {
fmt.Println(c.Params)
c.JSON(http.StatusOK, "ok")
}
//TestFun3 帶自定義context跟已解析的req引數回撥方式
func TestFun3(c *api.Context, req *ReqTest) {
fmt.Println(c.Params)
fmt.Println(req)
c.JSON(http.StatusOK, "ok")
}
//TestFun4 帶自定義context跟已解析的req引數回撥方式
func TestFun4(c *gin.Context, req ReqTest) {
fmt.Println(c.Params)
fmt.Println(req)
c.JSON(http.StatusOK, req)
}
func main() {
base := ginrpc.New(ginrpc.WithCtx(func(c *gin.Context) interface{} {
return api.NewCtx(c)
}), ginrpc.WithDebug(true), ginrpc.WithGroup("xxjwxc"))
router := gin.Default()
h := new(Hello)
h.Index = 123
base.Register(router, h) // 物件註冊
router.POST("/test1", base.HandlerFunc(TestFun1)) // 函式註冊
router.POST("/test2", base.HandlerFunc(TestFun2))
router.POST("/test3", base.HandlerFunc(TestFun3))
router.POST("/test4", base.HandlerFunc(TestFun4))
base.RegisterHandlerFunc(router, []string{"post", "get"}, "/test", TestFun1) // 多種請求方式註冊
router.Run(":8080")
}
- curl
curl 'http://127.0.0.1:8080/test4' -H 'Content-Type: application/json' -d '{"access_token":"111", "user_name":"222", "password":"333"}'
註解路由
-
1. 註解路由會自動建立 [mod]/routers/gen_router.go 檔案 需要在呼叫時加:
_ "[mod]/routers" // debug模式需要新增[mod]/routers 註冊註解路由
預設也會在專案根目錄生成 [gen_router.data] 檔案 (保留次檔案,可以不用新增上面程式碼嵌入)
-
2. 註解路由呼叫方式:
base := ginrpc.New(ginrpc.WithCtx(func(c *gin.Context) interface{} { return api.NewCtx(c) }), ginrpc.WithDebug(true), ginrpc.WithGroup("xxjwxc")) base.Register(router, new(Hello)) // 物件註冊 router.Run(":8080")
詳細請看 demo ginweb
-
3. 執行 curl,可以自動引數繫結。直接看結果
curl 'http://127.0.0.1:8080/xxjwxc/block' -H 'Content-Type: application/json' -d '{"access_token":"111", "user_name":"222", "password":"333"}'
curl 'http://127.0.0.1:8080/xxjwxc/hello.hello2' -H 'Content-Type: application/json' -d '{"access_token":"111", "user_name":"222", "password":"333"}'
-
4 引數說明
ginrpc.WithCtx : 設定自定義 context
ginrpc.WithDebug (true) : 設定 debug 模式
ginrpc.WithGroup ("xxjwxc") : 新增路由字首 (也可以使用 gin.Group 分組)
ginrpc.WithBigCamel (true) : 設定大駝峰標準 (false 為 web 模式,_, 小寫)
下一步
1.匯出api文件
2.匯出postman測試配置
程式碼地址: ginprc 如果喜歡請給星支援
如果你喜歡,請'star'
- 加微信實戰群請加微信(註明:實戰群):gocnio
相關文章
- gin自動引數繫結工具,rpc支援RPC
- Flutter 路由——頁面表及頁面引數繫結的自動生成Flutter路由
- gin自動路由中介軟體路由
- beego註解路由中各個引數解釋Go路由
- springmvc 引數繫結SpringMVC
- Gin 模型繫結驗證模型
- 介面引數繫結, 公共處理程式碼生成工具
- Grails中如何繫結引數AI
- 動態路由(URL引數)路由
- 工具類 :@RequestMapping 路由註解APP路由
- 61. 路由 路由模型繫結路由模型
- SpringMVC中的引數繫結總結SpringMVC
- 引數校驗註解
- SPRING實踐總結--引數註解的使用Spring
- 解決多個路由繫結同一個元件 獲取引數只獲取一次的方法路由元件
- Hyperf - 自動註解
- Laravel 多鍵路由繫結Laravel路由
- 使用反射對繫結url引數到結構體反射結構體
- .net core Web API引數繫結規則WebAPI
- 【工作篇】再次熟悉 SpringMVC 引數繫結SpringMVC
- 動態條件的繫結變數的解決變數
- Oracle 繫結變數 詳解Oracle變數
- [系列] Gin框架 - 資料繫結和驗證框架
- Laravel 路由的隱式繫結和顯式繫結Laravel路由
- SwaggerAPI註解詳解,以及註解常用引數配置SwaggerAPI
- 最近編寫了一個給 gin 框架實現註解路由的工具,個人覺得挺有實際意義框架路由
- Elasticsearch效能優化引數註解Elasticsearch優化
- Laravel 框架中 whereRaw like 引數繫結問題Laravel框架
- SpringMVC原始碼之引數解析繫結原理SpringMVC原始碼
- SpringMVC的引數繫結-日期格式轉換SpringMVC
- [轉載]SpringMVC的Model引數繫結方式SpringMVC
- Java Web之SpringMVC 進行引數繫結JavaWebSpringMVC
- Gin(四):表單提交校驗和模型繫結模型
- 基於gin的golang web開發:模型繫結GolangWeb模型
- gin json binding 引數驗證JSON
- 榮耀路由器解除MAC地址解繫結限制的方法 榮耀路由pro怎麼解除MAC地址繫結限制?路由器Mac
- 繫結變數優缺點、使用、繫結變數窺探、 Oracle自適應共享遊標變數Oracle
- 繫結變數引數關閉之後,oracle會如何操作變數Oracle