jooby icon indicating copy to clipboard operation
jooby copied to clipboard

The modular web framework for Java and Kotlin

Results 73 jooby issues
Sort by recently updated
recently updated
newest added

Still need some docs, tests, cleanup, but the basic logic seems done

Bumps the dependencies group with 8 updates: | Package | From | To | | --- | --- | --- | | [com.amazonaws:aws-java-sdk-bom](https://github.com/aws/aws-sdk-java) | `1.12.769` | `1.12.770` | | [org.jdbi:jdbi3-core](https://github.com/jdbi/jdbi)...

dependencies
java

As Quartz alternative, see: https://github.com/kagkarlsson/db-scheduler

feature
scheduler

Hello. First of all, thank you for this amazing framework, it looks incredible! I would like to ask how to integrate SNI SSL support for multiple domains without having to...

Given the discussions on #3496 (and corresponding PR #3494) as well as the new `@BindParam` I think the reflective bean converter needs some cleanup and possibly should be available as...

I couldn't find how to validate request parameters in the documentation.

After `jooby-apt` rewrite the annotation-processors order becomes quite important. Added a note in the docs to save some brain cells for newbies.

```java interface BeanFactory { create(Context ctx, Class type); } ``` With: ```java { install(new ModelBeanFactory()); get("/bean", ctx -> { var person = ctx.query(Person.class); }); } ``` Or: ```java class Controller...

feature

The service lookup was required while using reflection+byte-code generation. Now we generate code, so we can remove it. So: ``` mvc(Controller.class); ``` Must be replaced by: ``` mvc(new Controller_()); ```

break-change
apt