forked from xinliangnote/go-gin-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
61 lines (52 loc) · 1.55 KB
/
main.go
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
60
61
package main
import (
"context"
"fmt"
"github.com/gin-contrib/pprof"
"github.com/gin-gonic/gin"
"go-gin-api/app/config"
"go-gin-api/app/route"
"log"
"net/http"
"os"
"os/signal"
"time"
)
func main() {
gin.SetMode(config.AppMode)
engine := gin.New()
// 性能分析 - 正式环境不要使用!!!
pprof.Register(engine)
// 设置路由
route.SetupRouter(engine)
server := &http.Server{
Addr : config.AppPort,
Handler : engine,
ReadTimeout : config.AppReadTimeout * time.Second,
WriteTimeout : config.AppWriteTimeout * time.Second,
}
fmt.Println("|-----------------------------------|")
fmt.Println("| go-gin-api |")
fmt.Println("|-----------------------------------|")
fmt.Println("| Go Http Server Start Successful |")
fmt.Println("| Port" + config.AppPort + " Pid:" + fmt.Sprintf("%d", os.Getpid()) + " |")
fmt.Println("|-----------------------------------|")
fmt.Println("")
go func() {
if err := server.ListenAndServe(); err != nil && err != http.ErrServerClosed {
log.Fatalf("HTTP server listen: %s\n", err)
}
}()
// 等待中断信号以优雅地关闭服务器(设置 5 秒的超时时间)
signalChan := make(chan os.Signal)
signal.Notify(signalChan, os.Interrupt)
sig := <-signalChan
log.Println("Get Signal:", sig)
log.Println("Shutdown Server ...")
ctx, cancel := context.WithTimeout(context.Background(), 5 * time.Second)
defer cancel()
if err := server.Shutdown(ctx); err != nil {
log.Fatal("Server Shutdown:", err)
}
log.Println("Server exiting")
}