lospejos e4c4715602 Bump deps versions (#9064) 1 anno fa
..
conf 29065e629c jooby: rename jooby2 folder (#5314) 5 anni fa
public 29065e629c jooby: rename jooby2 folder (#5314) 5 anni fa
src 7228260ff1 jooby: upgrade 3.1 (#9044) 1 anno fa
.gitignore b4c2b36f53 jooby: upgrade 3.x (#8294) 2 anni fa
README.md 29065e629c jooby: rename jooby2 folder (#5314) 5 anni fa
benchmark_config.json b4c2b36f53 jooby: upgrade 3.x (#8294) 2 anni fa
config.toml 8c27c79b67 jooby: fix postgres pg-client tests (#8409) 1 anno fa
jooby-jetty.dockerfile ff3d1104aa Bumped version for Java, Jooby, Maven and other libraries/dependencies (#8796) 1 anno fa
jooby-mvc.dockerfile ff3d1104aa Bumped version for Java, Jooby, Maven and other libraries/dependencies (#8796) 1 anno fa
jooby-netty.dockerfile ff3d1104aa Bumped version for Java, Jooby, Maven and other libraries/dependencies (#8796) 1 anno fa
jooby-pgclient.dockerfile ff3d1104aa Bumped version for Java, Jooby, Maven and other libraries/dependencies (#8796) 1 anno fa
jooby.dockerfile ff3d1104aa Bumped version for Java, Jooby, Maven and other libraries/dependencies (#8796) 1 anno fa
pom.xml e4c4715602 Bump deps versions (#9064) 1 anno fa

README.md

Jooby Benchmarking Test

Jooby the modular micro web framework for Java and Kotlin.

public class App extends Jooby {

  {
    get("/", ctx -> "Hello, World!");
  }

}

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

Plain Text Test

JSON Encoding Test

Single Query Test

Multiple Queries Test

Database Update Test

Fortunes Test

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

netty

mvn clean package -P netty

undertow

mvn clean package -P undertow

jetty

mvn clean package -P jetty

run

java -jar target/jooby-2x.jar