Edgar Espina c0cfcd4685 jooby: 4.0.9 (#10195) 5 өдөр өмнө
..
conf eeca4343b2 Kooby (jooby + kotlin) (#4903) 6 жил өмнө
public eeca4343b2 Kooby (jooby + kotlin) (#4903) 6 жил өмнө
src 08de5e8402 jooby: upgrade to 4.0 (#10008) 3 сар өмнө
.gitignore eeca4343b2 Kooby (jooby + kotlin) (#4903) 6 жил өмнө
README.md eeca4343b2 Kooby (jooby + kotlin) (#4903) 6 жил өмнө
benchmark_config.json 08de5e8402 jooby: upgrade to 4.0 (#10008) 3 сар өмнө
config.toml 08de5e8402 jooby: upgrade to 4.0 (#10008) 3 сар өмнө
kooby.dockerfile b42bd58bbf jooby: 4.0.7 (#10096) 1 сар өмнө
pom.xml c0cfcd4685 jooby: 4.0.9 (#10195) 5 өдөр өмнө

README.md

Kooby (Jooby + Kotlin)

Jooby the modular micro web framework for Java and Kotlin.

import io.jooby.runApp

fun main(args: Array<String>) {
  runApp(args) {

    get("/") {
      "Hello Kooby!"
    }

  }
}

This is the Jooby portion of a benchmarking test suite comparing a variety of web development platforms.

Test URLs

Plain Text Test

http://localhost:8080/plaintext

JSON Encoding Test

http://localhost:8080/json

Single Query Test

http://localhost:8080/db

Multiple Queries Test

http://localhost:8080/queries

Database updates Test

http://localhost:8080/updates

Fortunes Test

http://localhost:8080/fortunes

build

mvn clean package

run

java -jar target/kooby.jar