dependabot[bot] a00466ea6a Bump postgresql from 42.2.25 to 42.3.3 in /frameworks/Java/jooby (#7138) 3 tahun lalu
..
conf 29065e629c jooby: rename jooby2 folder (#5314) 5 tahun lalu
public 29065e629c jooby: rename jooby2 folder (#5314) 5 tahun lalu
src 3928029772 jooby upgrade (#6137) 4 tahun lalu
README.md 29065e629c jooby: rename jooby2 folder (#5314) 5 tahun lalu
benchmark_config.json e608785a56 jooby: 2.8.8 (#5803) 5 tahun lalu
config.toml 0096f84ee9 Config for the new toolset (#6259) 4 tahun lalu
jooby-jaxrs.dockerfile 0096f84ee9 Config for the new toolset (#6259) 4 tahun lalu
jooby-jetty.dockerfile 0096f84ee9 Config for the new toolset (#6259) 4 tahun lalu
jooby-netty.dockerfile 0096f84ee9 Config for the new toolset (#6259) 4 tahun lalu
jooby-pgclient.dockerfile 0096f84ee9 Config for the new toolset (#6259) 4 tahun lalu
jooby.dockerfile 0096f84ee9 Config for the new toolset (#6259) 4 tahun lalu
pom.xml a00466ea6a Bump postgresql from 42.2.25 to 42.3.3 in /frameworks/Java/jooby (#7138) 3 tahun lalu

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