cedar-router - 基于前缀树算法的 golang router


GPL
跨平台
Google Go

软件简介

cedar,轻量级 Golang 路由器,基于前缀树算法。

cedar.NewRouter().Get(prefix,http.HandlerFunc,http.Handler)

全局方法

r.GlobalFunc("test", func(r *http.Request) error {
    fmt.Println("123213")
    return nil
})

支持常见的method

r := cedar.NewRouter()
r.Get("/",http.HandlerFunc(),nil)
r.Post("/",http.HandlerFunc(),nil)
r.Put("/",http.HandlerFunc(),nil)
r.Delete("/",http.HandlerFunc(),nil)

handFunc和Handler在同一路径下我建议只填写一个 . 测试通过websocket
,静态文件路由需要改写ServerHTTP方法.我默认在当前路径下 static/

同一路由下 不同Method ,会覆盖前面的的HandlerFunc和Handler

群组路由

r := cedar.NewRouter()
r.Group("/a",func (group *cedar.Groups){
    group.Get("/b",http.HandlerFunc(),nil)
    group.Group("/c",func(groups *cedar.Groups) {
        group.Get("/d",http.HandlerFunc(),nil)
    })
})

同时也支持RestFul风格

r := cedar.NewRestRouter(cedar.RestConfig{
        EntryPath: "blog",
        ApiName:   "api",
        Pattern:   ".",
})

r.Get("user", func(writer http.ResponseWriter, request *http.Request) {
        r.Template(writer, "/index")
}, nil)

//localhost/blog?api=user

通过 localhost/blog?api=user 获得访问.

软件稳定运行在服务器