Ex 14 - Panic/Recover Middleware for HTTP Servers
In the recover exercise we will be looking at the panic
and recover
mechanisms in Go and utilizing them to create middleware for an HTTP server.
Given a simple web server (see main.go
) that can potentially panic, create an http.Handler
that wraps the existing mux and will recover from any panics and then does the following:
http.StatusInternalServerError
(500) whenever a panic occurs.http.ResponseWriter
BEFORE the panic occurred (this one may be trickier)As a bonus exercises you can also look at ways to ensure you don’t lose functionality like implementing the http.Flusher or the http.Hijacker interfaces.