• 自定义 HTTP 配置

    自定义 HTTP 配置

    直接使用 http.ListenAndServe(),如下所示:

    1. func main() {
    2. router := gin.Default()
    3. http.ListenAndServe(":8080", router)
    4. }

    1. func main() {
    2. router := gin.Default()
    3. s := &http.Server{
    4. Addr: ":8080",
    5. Handler: router,
    6. ReadTimeout: 10 * time.Second,
    7. WriteTimeout: 10 * time.Second,
    8. MaxHeaderBytes: 1 << 20,
    9. }
    10. s.ListenAndServe()
    11. }