jooby
jooby copied to clipboard
The modular web framework for Java and Kotlin
@jknack I have newer logging framework that has some advantages over log4j2/logback: https://github.com/jstachio/rainbowgum I can add the module to jooby as a PR or can manage it in the Rainbow...
It sure would be convenient
Bumps the dependencies group with 20 updates: | Package | From | To | | --- | --- | --- | | [com.amazonaws:aws-java-sdk-bom](https://github.com/aws/aws-sdk-java) | `1.12.785` | `1.12.787` | | [com.github.ben-manes.caffeine:caffeine](https://github.com/ben-manes/caffeine)...
Bumps [swagger-ui-dist](https://github.com/swagger-api/swagger-ui) from 5.24.0 to 5.24.1. Release notes Sourced from swagger-ui-dist's releases. Swagger UI v5.24.1 Released! 5.24.1 (2025-06-10) Features oas3: show the schema tab in the Try it Out mode...
Today, BeanConverter looks like: ```java public interface BeanConverter extends ValueConverter { boolean supports(@NonNull Class type); Object convert(@NonNull ValueNode node, @NonNull Class type); } ``` The `convert` method is tied/bind to...
Must be either main class name or package name of main class when main class is called App: ``` MyApp {} => myapp cookie ``` ``` package mycompany; App {}...
- simplify (probably remove) buffer API - We just need something that allow us to use netty buffers and/or undertow/jetty buffer pools
There is a typical use-case for get/find/fetch API like below ```java get("/users/{userId}", ctx -> { var userId = ctx.path("userId").value(); return userRepository.findUserById(userId); // can return null, and this is OK for...