mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 18:51:03 +01:00
3945fa68d1
We have to do the same on iris-contrib/examples, iris-contrib/middleware and e.t.c. Former-commit-id: 0860688158f374bc137bc934b81b26dcd0e10964
43 lines
1.0 KiB
Go
43 lines
1.0 KiB
Go
package main
|
|
|
|
import (
|
|
"github.com/kataras/iris/v12"
|
|
|
|
"github.com/kataras/iris/v12/middleware/logger"
|
|
"github.com/kataras/iris/v12/middleware/recover"
|
|
)
|
|
|
|
func main() {
|
|
app := iris.New()
|
|
app.Logger().SetLevel("debug")
|
|
// Optionally, add two builtin handlers
|
|
// that can recover from any http-relative panics
|
|
// and log the requests to the terminal.
|
|
app.Use(recover.New())
|
|
app.Use(logger.New())
|
|
|
|
// Method: GET
|
|
// Resource: http://localhost:8080
|
|
app.Handle("GET", "/", func(ctx iris.Context) {
|
|
ctx.HTML("<h1>Welcome</h1>")
|
|
})
|
|
|
|
// same as app.Handle("GET", "/ping", [...])
|
|
// Method: GET
|
|
// Resource: http://localhost:8080/ping
|
|
app.Get("/ping", func(ctx iris.Context) {
|
|
ctx.WriteString("pong")
|
|
})
|
|
|
|
// Method: GET
|
|
// Resource: http://localhost:8080/hello
|
|
app.Get("/hello", func(ctx iris.Context) {
|
|
ctx.JSON(iris.Map{"message": "Hello Iris!"})
|
|
})
|
|
|
|
// http://localhost:8080
|
|
// http://localhost:8080/ping
|
|
// http://localhost:8080/hello
|
|
app.Run(iris.Addr(":8080"), iris.WithoutServerError(iris.ErrServerClosed))
|
|
}
|