David
David
Javalin instance and JavalinConfig APIs Test for "full" api: https://github.com/javalin/javalin/commit/eef4dcc39d448e5d912bafa947517bb5b34a56ea We currently have this API: ```kotlin val app = Javalin.create { config -> // Jetty config.jetty.multipartConfig = MultipartConfig() config.jetty.defaultHost =...
The old plugin had support for default responses: ``` OpenApiOptions().apply { defaultDocumentation { doc -> doc.json("500", ErrorResponse::class.java) doc.json("503", ErrorResponse::class.java) } } ``` These are responses which could occur on any...
Creating JMH tests instead of relying on a command line load testing tool might be beneficial. JMH tests would be easier to run, and also give access to JVM stats.
> [Jonjolt](https://reddit.com/u/Jonjolt): I wonder what it would be like if you pinned a single core with Loom? Would that even be possible? https://github.com/OpenHFT/Java-Thread-Affinity
There's a `LoomThreadPool` in the Jetty repo that we should probably just copy: https://github.com/jetty-project/jetty-loom/blob/master/src/main/java/org/eclipse/jetty/loom/LoomThreadPool.java