Edgar Espina cbcbeb108c jooby: Added mvc tests (a.k.a Controller) + fix pgclient update test (#5037) hace 6 años
..
conf f74a929cf4 jooby: pgclient tests + upgrade (#4995) hace 6 años
public fc87c77a56 Jooby 2.0.0.M1 (#4470) hace 6 años
src cbcbeb108c jooby: Added mvc tests (a.k.a Controller) + fix pgclient update test (#5037) hace 6 años
README.md fc87c77a56 Jooby 2.0.0.M1 (#4470) hace 6 años
benchmark_config.json cbcbeb108c jooby: Added mvc tests (a.k.a Controller) + fix pgclient update test (#5037) hace 6 años
jooby2-jetty.dockerfile cfea12fc9d jooby: upgrade to 2.0.6 + jvm options for all configurations (#5017) hace 6 años
jooby2-mvc.dockerfile cbcbeb108c jooby: Added mvc tests (a.k.a Controller) + fix pgclient update test (#5037) hace 6 años
jooby2-pgclient.dockerfile cfea12fc9d jooby: upgrade to 2.0.6 + jvm options for all configurations (#5017) hace 6 años
jooby2-undertow.dockerfile cfea12fc9d jooby: upgrade to 2.0.6 + jvm options for all configurations (#5017) hace 6 años
jooby2.dockerfile cfea12fc9d jooby: upgrade to 2.0.6 + jvm options for all configurations (#5017) hace 6 años
pom.xml cbcbeb108c jooby: Added mvc tests (a.k.a Controller) + fix pgclient update test (#5037) hace 6 años

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