goji 是个后起的golang web框架,避免其它golang web 框架走过的坑,在性能、简单性方面做得很好。

goji logo

特性

  1. 兼容 net/http
  2. URL 模式(既包含 Sinatra 类型 /foo/:bar 模式又支持正则表达式,你还可以自定义模式
  3. 可扩展的中间件技术栈
  4. 自动支持 Einhorn, systemd, 还有 more
  5. 优雅退出,零当机,可以和Einhorn 结合,优雅重启
  6. Ruby on Rails / jQuery 类型参数解析 parameter parsing

简单例子

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package main

import (
    "fmt"
    "net/http"

    "github.com/zenazn/goji"
    "github.com/zenazn/goji/web"
)

func hello(c web.C, w http.ResponseWriter, r *http.Request) {
    fmt.Fprintf(w, "Hello, %s!", c.URLParams["name"])
}

func main() {
    goji.Get("/hello/:name", hello)
    goji.Serve()
}

使用中间件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
func MyMiddleware(c *web.C, h http.Handler) http.Handler {
    fn := func (w http.ResponseWriter, r *http.Request) {
        // Pass data through the environment
        c.Env["Hello"] = "world"
        // Fully control how the next layer is called
        h.ServeHTTP(w, r)
    }
    return http.HandlerFunc(fn)
}

func main() {
    // Middleware are fully reconfigurable at any time
    goji.Use(MyMiddleware)
    goji.Insert(NotPicturedMiddleware, MyMiddleware)
    goji.Abandon(MyMiddleware)
}

官方网站 https://goji.io 项目地址 https://github.com/zenazn/goji

本文网址: https://golangnote.com/topic/3.html 转摘请注明来源