Edgar Espina 2ccf30277a jooby: 4.0.11 (#10244) 2 месяцев назад
..
conf c0cfcd4685 jooby: 4.0.9 (#10195) 2 месяцев назад
public 29065e629c jooby: rename jooby2 folder (#5314) 6 лет назад
src 2ccf30277a jooby: 4.0.11 (#10244) 2 месяцев назад
.gitignore b4c2b36f53 jooby: upgrade 3.x (#8294) 2 лет назад
README.md 29065e629c jooby: rename jooby2 folder (#5314) 6 лет назад
benchmark_config.json b56aec2b45 jooby: 4.0.5 (#10040) 5 месяцев назад
config.toml b56aec2b45 jooby: 4.0.5 (#10040) 5 месяцев назад
jooby-jetty.dockerfile 2ccf30277a jooby: 4.0.11 (#10244) 2 месяцев назад
jooby-mvc.dockerfile 2ccf30277a jooby: 4.0.11 (#10244) 2 месяцев назад
jooby-netty.dockerfile 2ccf30277a jooby: 4.0.11 (#10244) 2 месяцев назад
jooby-pgclient.dockerfile 2ccf30277a jooby: 4.0.11 (#10244) 2 месяцев назад
jooby.dockerfile 2ccf30277a jooby: 4.0.11 (#10244) 2 месяцев назад
pom.xml 2ccf30277a jooby: 4.0.11 (#10244) 2 месяцев назад

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