gin中自定义http的配置

package main

import (
	"github.com/gin-gonic/gin"
	"net/http"
	"time"
)

func main() {
	// 自定义http配置1
	//router := gin.Default()
	//router.GET("/", func(context *gin.Context) {
	//	context.String(200, "OK")
	//})
	//http.ListenAndServe(":3000", router)

	// 自定义http配置2
	r := gin.Default()
	r.GET("/", func(context *gin.Context) {
		context.String(200, "ok")
	})
	s := &http.Server{
		Addr: ":4000",
		Handler: r,
		ReadTimeout: 10 * time.Second,
		WriteTimeout: 10 * time.Second,
		MaxHeaderBytes: 1 << 20,  // 1M
	}
	s.ListenAndServe()
}

  

posted @ 2021-10-28 09:53  专职  阅读(215)  评论(0编辑  收藏  举报