-
Notifications
You must be signed in to change notification settings - Fork 180
Expand file tree
/
Copy pathmain.go
More file actions
59 lines (48 loc) · 1.36 KB
/
main.go
File metadata and controls
59 lines (48 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package main
import (
"fmt"
"github.com/devfeel/dotweb"
"github.com/devfeel/dotweb/framework/file"
"strconv"
)
func main() {
//初始化DotServer
app := dotweb.New()
//设置dotserver日志目录
app.SetLogPath(file.GetCurrentDirectory())
//设置路由
InitRoute(app.HttpServer)
//启动 监控服务
//app.SetPProfConfig(true, 8081)
//全局容器
app.AppContext.Set("gstring", "gvalue")
app.AppContext.Set("gint", 1)
// 开始服务
port := 8080
fmt.Println("dotweb.StartServer => " + strconv.Itoa(port))
err := app.StartServer(port)
fmt.Println("dotweb.StartServer error => ", err)
}
type TestContext struct {
UserName string
Sex int
}
//you can curl http://127.0.0.1:8080/
func Index(ctx dotweb.Context) error {
gstring := ctx.AppContext().GetString("gstring")
gint := ctx.AppContext().GetInt("gint")
ctx.AppContext().Set("index", "index-v")
ctx.AppContext().Set("user", "user-v")
return ctx.WriteString("index -> " + gstring + ";" + strconv.Itoa(gint))
}
//you can curl http://127.0.0.1:8080/2
func Index2(ctx dotweb.Context) error {
gindex := ctx.AppContext().GetString("index")
ctx.AppContext().Remove("index")
user, _ := ctx.AppContext().Once("user")
return ctx.WriteString("index -> " + gindex + ";" + fmt.Sprint(user))
}
func InitRoute(server *dotweb.HttpServer) {
server.Router().GET("/", Index)
server.Router().GET("/2", Index2)
}