Edgar Espina 81e462aa60 jooby: 2.9.5 (#6242) 4 jaren geleden
..
conf eeca4343b2 Kooby (jooby + kotlin) (#4903) 6 jaren geleden
public eeca4343b2 Kooby (jooby + kotlin) (#4903) 6 jaren geleden
src 3928029772 jooby upgrade (#6137) 4 jaren geleden
.gitignore eeca4343b2 Kooby (jooby + kotlin) (#4903) 6 jaren geleden
README.md eeca4343b2 Kooby (jooby + kotlin) (#4903) 6 jaren geleden
benchmark_config.json 862618aa32 jooby: 2.8.5 (#5739) 5 jaren geleden
kooby.dockerfile cfea12fc9d jooby: upgrade to 2.0.6 + jvm options for all configurations (#5017) 6 jaren geleden
pom.xml 81e462aa60 jooby: 2.9.5 (#6242) 4 jaren geleden

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