在一個http服務中 , 若是要定義一些參數好比讀超時時間 , 寫超時時間 , 那麼用最簡單的http.ListenAndServe 就不能實現了spa
須要本身實例化http.Server結構體 ,實例化完成之後 , 以前的路由怎麼加進去又是一個問題code
http.Server中處理請求響應是經過屬性裏的Handler來完成的 , 而屬性裏的Handler是一個interface接口類型 , 必須實現的方法是ServeHTTP(ResponseWriter, *Request)blog
正好ServeMux這個處理路由的結構體實現了ServeHTTP(ResponseWriter, *Request)方法 , 那麼就能直接把這個結構體加進去接口
log.Println("listen on 8080...\r\ngo:http://127.0.0.1:8080") mux:=&http.ServeMux{} //根路徑 mux.HandleFunc("/", controller.ActionIndex) //郵件夾 mux.HandleFunc("/list", controller.ActionFolder) //登錄界面 mux.HandleFunc("/login", controller.ActionLogin) s := &http.Server{ Addr: ":8080", Handler: mux, ReadTimeout: 30 * time.Second, WriteTimeout: 30 * time.Second, MaxHeaderBytes: 1 << 20, } s.ListenAndServe()
這樣路由也能用 , 還能給Server自定義參數 路由