Edgar Espina 2ccf30277a jooby: 4.0.11 (#10244) 1 månad sedan
..
conf eeca4343b2 Kooby (jooby + kotlin) (#4903) 6 år sedan
public eeca4343b2 Kooby (jooby + kotlin) (#4903) 6 år sedan
src 08de5e8402 jooby: upgrade to 4.0 (#10008) 4 månader sedan
.gitignore eeca4343b2 Kooby (jooby + kotlin) (#4903) 6 år sedan
README.md eeca4343b2 Kooby (jooby + kotlin) (#4903) 6 år sedan
benchmark_config.json 08de5e8402 jooby: upgrade to 4.0 (#10008) 4 månader sedan
config.toml 08de5e8402 jooby: upgrade to 4.0 (#10008) 4 månader sedan
kooby.dockerfile 2ccf30277a jooby: 4.0.11 (#10244) 1 månad sedan
pom.xml 2ccf30277a jooby: 4.0.11 (#10244) 1 månad sedan

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