是否可以在app引擎上使用martini框架

时间:2013-11-28 14:16:52

标签: google-app-engine go

是否可以在Google的应用引擎上使用http://martini.codegangsta.io?有人有例子吗?在走这条路之前,我应该注意哪些问题?提前谢谢。

1 个答案:

答案 0 :(得分:6)

只要马提尼不使用cgo或unsafesyscallit should be fineREADME of martini包含将带有GAE的马提尼用作@elithar pointed out的示例:

package hello

import (
  "net/http"
  "github.com/go-martini/martini"
)

func init() {
  m := martini.Classic()
  m.Get("/", func() string {
    return "Hello world!"
  })
  http.Handle("/", m)
}

使用带有应用引擎的第三方软件包的另一个示例是this randomly chosen app engine example project