mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 10:41:03 +01:00
4099bd15c1
https://hackernoon.com/go-vs-net-core-in-terms-of-http-performance-7535a61b67b8 Former-commit-id: dabf2d23a2f8a341ded9fc87ced82300855e26a6
43 lines
1.1 KiB
Go
43 lines
1.1 KiB
Go
package main
|
|
|
|
import (
|
|
"github.com/kataras/iris/_benchmarks/iris-mvc-templates/controllers"
|
|
|
|
"github.com/kataras/iris"
|
|
"github.com/kataras/iris/context"
|
|
)
|
|
|
|
const (
|
|
// templatesDir is the exactly the same path that .NET Core is using for its templates,
|
|
// in order to reduce the size in the repository.
|
|
// Change the "C\\mygopath" to your own GOPATH.
|
|
templatesDir = "C:\\mygopath\\src\\github.com\\kataras\\iris\\_benchmarks\\netcore-mvc-templates\\wwwroot"
|
|
)
|
|
|
|
func main() {
|
|
app := iris.New()
|
|
app.Configure(configure)
|
|
|
|
app.Controller("/", new(controllers.IndexController))
|
|
app.Controller("/about", new(controllers.AboutController))
|
|
app.Controller("/contact", new(controllers.ContactController))
|
|
|
|
app.Run(iris.Addr(":5000"))
|
|
}
|
|
|
|
func configure(app *iris.Application) {
|
|
app.RegisterView(iris.HTML("./views", ".html").Layout("shared/layout.html"))
|
|
app.StaticWeb("/public", templatesDir)
|
|
app.OnAnyErrorCode(onError)
|
|
}
|
|
|
|
type err struct {
|
|
Title string
|
|
Code int
|
|
}
|
|
|
|
func onError(ctx context.Context) {
|
|
ctx.ViewData("", err{"Error", ctx.GetStatusCode()})
|
|
ctx.View("shared/error.html")
|
|
}
|