一个Go语言的REST API框架:Ripple
Ripple是一个简单,而且灵活的Go语言 REST API 框架。以下是一个简单的用法:
package main import ( "./ripple" "./controllers" "net/http" ) func main() { // Build the REST application app := ripple.NewApplication() // Create a controller and register it. Any number of controllers // can be registered that way. userController := rippledemo.NewUserController() app.RegisterController("users", userController) // Setup the routes. The special patterns `_controller` will automatically match // an existing controller, as defined above. Likewise, `_action` will match any // existing action. app.AddRoute(ripple.Route{ Pattern: ":_controller/:id/:_action" }) app.AddRoute(ripple.Route{ Pattern: ":_controller/:id/" }) app.AddRoute(ripple.Route{ Pattern: ":_controller" }) // Start the server http.ListenAndServe(":8080", app) }
本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
转载本站原创文章,请注明出处,并保留原始链接、图片水印。
本站是一个以用户分享为主的开源技术平台,欢迎各类分享!