AdSense

網頁

2021/7/7

Golang Gin 更改應用程式埠號 change port number

Gin應用程式預設的port為8080,修改的方式如下。


範例環境:

  • Go 1.16
  • Gin 1.7.2

下面的main.go為gin的啟動設定,在gin.Run()可輸入表示port號的字串參數,例如":8081",則應用程式的port則改為8081。不輸入參數則port號預設為8080

main.go

package main

import "github.com/gin-gonic/gin"

func main() {
	router := gin.Default()
	router.GET("/hello", func(c *gin.Context) {
		c.String(200, "hello world")
	})
	// router.Run() // default port is 8080
	router.Run(":8081") // use port 8081
}

啟動專案用curl命令發送http request curl http://localhost:8081/hello結果如下。

[$ curl http://localhost:8081/hello
hello world


沒有留言:

AdSense