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
沒有留言:
張貼留言