现在我们实现一个GO的Web http服务
只做演示,没有实际功能
但是能看出Go做Http服务的简洁
****************************************
package main
import (
"fmt"
"log"
"net/http"
)
type Hello struct{}
func (h Hello) ServeHTTP(
w http.ResponseWriter,
r *http.Request) {
fmt.Fprint(w, "Hello!")
}
func main() {
var h Hello
err := http.ListenAndServe(":8080", h)
if err != nil {
log.Fatal(err)
}
}
Finally:
你看,就是这么带劲