-
**Is there a best practice for handling pagination?**
Perhaps using an off the shelf middleware?
Minimum requirements:
I want to specify offset / limits as query parameters that I can use in my…
-
Hello All,
Javalin is an amazing lightweight framework which I am evaluating so that I migrate from Spring Boot 2 and hence I am using Javalin along with DInject.
When we deserialize the post da…
-
-
This is just a FYI update on the development I've been doing on "Controllers with annotations" for Javalin.
Updated docs at https://dinject.io/docs/javalin/
- Includes OpenAPI / swagger generati…
-
I'm considering writing a book on Web Development using Javalin. It would cover the same topics as the docs and tutorials, but also go a bit more in-depth and include more examples. I'm wonder if ther…
tipsy updated
4 years ago
-
I tried to run the project with gradle 5.3.1 (and some other 5.x) versions, but gradle is not working.
Javalin is working without problems, but there are no Beans registered.
The SystemContext.getBe…
-
Where `Grinder` is an implementation class and not an interface
```java
@Test
public void withMockitoSpy_postLoadSetup_expect_spyUsed() {
try (BeanContext context = new BootContext()
…
-
Hi @rbygrave,
when I execute this:
```java
BootContext bootContext = new BootContext();
bootContext.withSpy(EmailService.class);
beanContext = bootContext.load();
…
-
In my controller, I am posting List of a Pojo. The route that is created is of ctx.bodyAsClass(List.class). Hence, it doesn't deserialize the Pojos as the values are in LinkedHashMap.
`java.lang.C…
-
When using factory with beans implementing interfaces the generated class is missing imports for those interfaces.
In this example imports for Versioned and Serializable are missing.
I tried fixin…