1、下载安装:
$ go get github.com/astaxie/beego
$ go get github.com/beego/bee
2、将 $GOPATH/bin 加入到你的 $PATH 变量中。
3、检测安装:
$ bee new hello
$ cd hello
$ bee run hello
一旦程序开始运行,您就可以在浏览器中打开 http://localhost:8080/ 进行访问。
package main
import (
"github.com/astaxie/beego")
type MainController struct {
beego.Controller}
func (this *MainController) Get() {
this.Ctx.WriteString("hello world")}
func main() {
beego.Router("/", &MainController{})
beego.Run()}
$ go build -o hello hello.go
$ ./hello
浏览器输入: http://127.0.0.1:8080
显示: “hello world”。