Golang 可以跨平台编译,部署微服务很方便,下面是用Goji 实现 RESTful 微服务示例。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package main
import (
"encoding/json"
"fmt"
"net/http"
"goji.io"
"goji.io/pat"
)
type book struct {
ISBN string "json:isbn"
Title string "json:name"
Authors string "json:author"
Price string "json:price"
}
var bookStore = []book{
book{
ISBN: "0321774639",
Title: "Programming in Go: Creating Applications for the 21st Century (Developer's Library)",
Authors: "Mark Summerfield",
Price: "$34.57",
},
book{
ISBN: "0134190440",
Title: "The Go Programming Language",
Authors: "Alan A. A. Donovan, Brian W. Kernighan",
Price: "$34.57",
},
}
func main() {
mux := goji.NewMux()
mux.HandleFunc(pat.Get("/books"), allBooks)
mux.HandleFunc(pat.Get("/books/:isbn"), bookByISBN)
mux.Use(logging)
http.ListenAndServe("localhost:8080", mux)
}
func allBooks(w http.ResponseWriter, r *http.Request) {
jsonOut, _ := json.Marshal(bookStore)
fmt.Fprintf(w, string(jsonOut))
}
func bookByISBN(w http.ResponseWriter, r *http.Request) {
isbn := pat.Param(r, "isbn")
for _, b := range bookStore {
if b.ISBN == isbn {
jsonOut, _ := json.Marshal(b)
fmt.Fprintf(w, string(jsonOut))
return
}
}
w.WriteHeader(http.StatusNotFound)
}
func logging(h http.Handler) http.Handler {
fn := func(w http.ResponseWriter, r *http.Request) {
fmt.Printf("Received request: %v\n", r.URL)
h.ServeHTTP(w, r)
}
return http.HandlerFunc(fn)
}
其实微服务重要的是业务逻辑的拆分。
本文网址: https://golangnote.com/topic/171.html 转摘请注明来源