dzikoysk

Results 142 comments of dzikoysk

OpenApi module from the link above is not related to this reactive routing at all, I was just using one repository for a while to keep all RFCs in one...

The new OpenApi plugin or my custom routing? You can already use the OpenApi module with Javalin 4.x/5.x. Speaking of the routing plugin I don't think so, at least we...

Well, the previous stacktrace is in fact "cleaner" in terms of visibility, but that's mostly because it didn't work properly and was affected by several issues like race conditions &...

In theory we can override stacktrace of exception: * https://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html#setStackTrace(java.lang.StackTraceElement[]) so we could just simply drop/replace internal part of it. But it could be misleading and in theory could hide...

**Status codes**: A general cleanup (braking changes) of status codes used in Javalin: * `HttpResponseException` * `Context#redirect`: Replace int parameter with `HttpCode` * `Context.status` by default should return `HttpCode`, we...

**Refactor of redirects**: * https://github.com/tipsy/javalin/pull/1539 - attempt to refactor this without breaking changes * `Context.terminate()` / Skiping lifecycle stages thread on Discord: https://discord.com/channels/804862058528505896/957002566728835073/974750844035665930

**Refactor of SSE implementation**: * Don't start async request handling for no reason or just remove a possibility to run sse handlers in sync context (because it doesn't make sense...

Javalin is written in Kotlin, so we don't quite care about Java version that much, because it's able to compile against everything above 8+. The requirement of Java 11 mostly...

Just a note for Java context: `java.lang.reflect.Type` is a part of reflection api and represents only explicitly declared signatures you can obtain from class sources - you can't obtain its...