Edgar Espina 8c27c79b67 jooby: fix postgres pg-client tests (#8409) 1 year ago
..
conf eeca4343b2 Kooby (jooby + kotlin) (#4903) 6 years ago
public eeca4343b2 Kooby (jooby + kotlin) (#4903) 6 years ago
src b4c2b36f53 jooby: upgrade 3.x (#8294) 2 years ago
.gitignore eeca4343b2 Kooby (jooby + kotlin) (#4903) 6 years ago
README.md eeca4343b2 Kooby (jooby + kotlin) (#4903) 6 years ago
benchmark_config.json 862618aa32 jooby: 2.8.5 (#5739) 5 years ago
config.toml 0096f84ee9 Config for the new toolset (#6259) 4 years ago
kooby.dockerfile 8c27c79b67 jooby: fix postgres pg-client tests (#8409) 1 year ago
pom.xml 8c27c79b67 jooby: fix postgres pg-client tests (#8409) 1 year ago

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