Golang : Pat multiplexer routing example
This is a short tutorial on how to use Pat multiplexer - a Sinatra style pattern muxer for Go's net/http library.
First :
>go get github.com/bmizerany/pat
before running the code below
package main
import (
"fmt"
"github.com/bmizerany/pat"
"net/http"
)
func SayHelloWorld(w http.ResponseWriter, r *http.Request) {
w.Write([]byte("Hello, World!"))
}
func ReplyNamePat(w http.ResponseWriter, r *http.Request) {
parameters := r.URL.Query()
name := parameters.Get(":name")
w.Write([]byte(fmt.Sprintf("Hello %s !", name)))
}
func main() {
mx := pat.New()
mx.Get("/", http.HandlerFunc(SayHelloWorld))
mx.Get("/:name", http.HandlerFunc(ReplyNamePat))
http.Handle("/", mx)
http.ListenAndServe(":8080", nil)
}
Sample output :
http://localhost:8080/Adam
Hello Adam !
http://localhost:8080/
Hello, World!
See also : Golang : Gorilla mux routing example
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+14.6k Golang : Adding XML attributes to xml data or use attribute to differentiate a common tag name
+17.8k Golang : Get all upper case or lower case characters from string example
+9k Golang : Serving HTTP and Websocket from different ports in a program example
+8.2k Golang : Convert word to its plural form example
+46.2k Golang : Encode image to base64 example
+26.5k Golang : How to check if a connection to database is still alive ?
+7k Golang : Transform lisp or spinal case to Pascal case example
+12.4k Golang : HTTP response JSON encoded data
+5.3k Golang : Qt update UI elements with core.QCoreApplication_ProcessEvents
+8.8k Golang : What is the default port number for connecting to MySQL/MariaDB database ?
+7.5k Golang : Error reading timestamp with GORM or SQL driver
+8.4k Golang : Another camera capture GUI application with GTK and OpenCV