gin使用中介軟體

晨夢~思雨發表於2020-10-31

gin使用中介軟體 

func main() {
	// 建立一個不包含中介軟體的路由器
	r := gin.New()

	// 全域性中介軟體
	// 使用 Logger 中介軟體
	r.Use(gin.Logger())

	// 使用 Recovery 中介軟體
	r.Use(gin.Recovery())

	// 路由新增中介軟體,可以新增任意多個
	r.GET("/benchmark", MyBenchLogger(), benchEndpoint)

	// 路由組中新增中介軟體
	// authorized := r.Group("/", AuthRequired())
	// exactly the same as:
	authorized := r.Group("/")
	// per group middleware! in this case we use the custom created
	// AuthRequired() middleware just in the "authorized" group.
	authorized.Use(AuthRequired())
	{
		authorized.POST("/login", loginEndpoint)
		authorized.POST("/submit", submitEndpoint)
		authorized.POST("/read", readEndpoint)

		// nested group
		testing := authorized.Group("testing")
		testing.GET("/analytics", analyticsEndpoint)
	}

	// Listen and serve on 0.0.0.0:8080
	r.Run(":8080")
}

相關文章