mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 18:51:03 +01:00
d7ec0d4416
Former-commit-id: 99cde0a445027b10839155501a7918732a783af3
93 lines
2.6 KiB
Go
93 lines
2.6 KiB
Go
package main
|
|
|
|
import (
|
|
"github.com/kataras/iris"
|
|
|
|
"github.com/kataras/iris/middleware/logger"
|
|
"github.com/kataras/iris/middleware/recover"
|
|
)
|
|
|
|
// This example is equivalent to the
|
|
// https://github.com/kataras/iris/blob/master/_examples/hello-world/main.go
|
|
//
|
|
// It seems that additional code you
|
|
// have to write doesn't worth it
|
|
// but remember that, this example
|
|
// does not make use of iris mvc features like
|
|
// the Model, Persistence or the View engine neither the Session,
|
|
// it's very simple for learning purposes,
|
|
// probably you'll never use such
|
|
// as simple controller anywhere in your app.
|
|
//
|
|
// The cost we have on this example for using MVC
|
|
// on the "/hello" path which serves JSON
|
|
// is ~2MB per 20MB throughput on my personal laptop,
|
|
// it's tolerated for the majority of the applications
|
|
// but you can choose
|
|
// what suits you best with Iris, low-level handlers: performance
|
|
// or high-level controllers: easier to maintain and smaller codebase on large applications.
|
|
|
|
func main() {
|
|
app := iris.New()
|
|
// Optionally, add two built'n handlers
|
|
// that can recover from any http-relative panics
|
|
// and log the requests to the terminal.
|
|
app.Use(recover.New())
|
|
app.Use(logger.New())
|
|
|
|
app.Controller("/", new(ExampleController))
|
|
|
|
// http://localhost:8080
|
|
// http://localhost:8080/ping
|
|
// http://localhost:8080/hello
|
|
app.Run(iris.Addr(":8080"))
|
|
}
|
|
|
|
// ExampleController serves the "/", "/ping" and "/hello".
|
|
type ExampleController struct {
|
|
// if you build with go1.8 you have to use the mvc package, `mvc.Controller` instead.
|
|
iris.Controller
|
|
}
|
|
|
|
// Get serves
|
|
// Method: GET
|
|
// Resource: http://localhost:8080
|
|
func (c *ExampleController) Get() {
|
|
c.ContentType = "text/html"
|
|
c.Text = "<h1>Welcome!</h1>"
|
|
}
|
|
|
|
// GetPing serves
|
|
// Method: GET
|
|
// Resource: http://localhost:8080/ping
|
|
func (c *ExampleController) GetPing() {
|
|
c.Text = "pong"
|
|
}
|
|
|
|
// GetHello serves
|
|
// Method: GET
|
|
// Resource: http://localhost:8080/hello
|
|
func (c *ExampleController) GetHello() {
|
|
c.Ctx.JSON(iris.Map{"message": "Hello Iris!"})
|
|
}
|
|
|
|
/* Can use more than one, the factory will make sure
|
|
that the correct http methods are being registered for each route
|
|
for this controller, uncomment these if you want:
|
|
|
|
func (c *ExampleController) Post() {}
|
|
func (c *ExampleController) Put() {}
|
|
func (c *ExampleController) Delete() {}
|
|
func (c *ExampleController) Connect() {}
|
|
func (c *ExampleController) Head() {}
|
|
func (c *ExampleController) Patch() {}
|
|
func (c *ExampleController) Options() {}
|
|
func (c *ExampleController) Trace() {}
|
|
*/
|
|
|
|
/*
|
|
func (c *ExampleController) All() {}
|
|
// OR
|
|
func (c *ExampleController) Any() {}
|
|
*/
|