Edgar Espina

Results 135 comments of Edgar Espina

In the past them caused version conflicts with other libraries. That was the reason of why I shaded it.

https://github.com/jooby-project/jooby/commit/4d5ea35d241d1781faf03c5a8ec5873bd2aab78e

Hi @pushkinser, Jooby 1.x is just too old and it is not supported anymore. You need to move/migrate to 2.x/3.x

@lospejos This line: [app.mvc(new Resource(app.require(DataSource.class)));](https://github.com/TechEmpower/FrameworkBenchmarks/blob/master/frameworks/Java/jooby/src/main/java/com/techempower/MvcApp.java#L20) need to be: ```java app.mvc(new Resource_(app.require(DataSource.class))); ``` That will fix the build error.

Glad you enjoy it. Look at dynamic routing: https://jooby.io/#router-dynamic-routing You basically can mount an app base on some condition (like header). There is a shortcut too: ``` { domain("www.domain.com", new...

In 2.x (if I remember correctly) there was a request to support multiple applications on same JVM. That means a single server listening on multiples ports. Probably that could help...

@agentgt seems undertow also support SNI. @Luuzzi want to give a try? PR is welcome

no hurry at all. thanks!

Signature for handler is: ``` @NonNull Object apply(@NonNull Context ctx) throws Exception; ``` So it must be non-null, but guess it depends on the encoder... Adding an after handler seems...