All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fireflysource.example.HttpServerRoutingByMethodDemo.kt Maven / Gradle / Ivy

The newest version!
package com.fireflysource.example

import com.fireflysource.`$`

fun main() {
    `$`.httpServer()
        .router().get("/product/:id").handler { ctx ->
            val id = ctx.getPathParameter("id")
            ctx.end("Get the product $id")
        }
        .router().post("/product").handler { ctx ->
            ctx.end("Create the product 1")
        }
        .router().put("/product/:id").handler { ctx ->
            val id = ctx.getPathParameter("id")
            ctx.end("Update the product $id")
        }
        .router().delete("/product/:id").handler { ctx ->
            val id = ctx.getPathParameter("id")
            ctx.end("Delete the product $id")
        }
        .listen("localhost", 8090)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy