首頁  >  文章  >  後端開發  >  在 Go 中使用 `http.FileServer` 提供靜態檔案時如何記錄 404 錯誤?

在 Go 中使用 `http.FileServer` 提供靜態檔案時如何記錄 404 錯誤?

DDD
DDD原創
2024-10-31 01:42:291009瀏覽

How can I log 404 errors when using `http.FileServer` to serve static files in Go?

記錄 Http.FileServer 的 404 錯誤

使用 http.FileServer 提供靜態檔案時,記錄何時對不存在的檔案發出請求通常很重要存在。雖然 http.FileServer 本身不提供此類日誌記錄,但擴展其功能可讓您實現此目標。

要包裝 http.StripPrefix 和 http.FileServer 傳回的處理程序,請建立一個新的 http.Handler 或 http.Handler。處理函數。包裝器將呼叫包裝的處理程序並檢查產生的 HTTP 回應狀態碼。如果它指示錯誤(特別是 HTTP 404 Not Found),它可以記錄該事件。

由於 http.ResponseWriter 不支援讀取回應狀態碼,請為其建立包裝器 (StatusRespWr)。這個包裝器會在寫入時儲存狀態碼。

http.Handler 包裝器的程式碼如下所示:

<code class="go">func wrapHandler(h http.Handler) http.HandlerFunc {
    return func(w http.ResponseWriter, r *http.Request) {
        srw := &StatusRespWr{ResponseWriter: w}
        h.ServeHTTP(srw, r)
        if srw.status >= 400 { // 400+ codes are error codes
            log.Printf("Error status code: %d when serving path: %s",
                srw.status, r.RequestURI)
        }
    }
}</code>

main 函數可以建立檔案伺服器,包裝它,並註冊它:

<code class="go">http.HandleFunc("/o/", wrapHandler(
    http.StripPrefix("/o", http.FileServer(http.Dir("/test")))))
panic(http.ListenAndServe(":8181", nil))</code>

請求不存在的檔案時,控制台會產生以下輸出:

2015/12/01 11:47:40 Error status code: 404 when serving path: /o/sub/b.txt2

以上是在 Go 中使用 `http.FileServer` 提供靜態檔案時如何記錄 404 錯誤?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn