pippo icon indicating copy to clipboard operation
pippo copied to clipboard

Micro Java Web Framework

Results 69 pippo issues
Sort by recently updated
recently updated
newest added

The idea is to play with Servlet 4 and see how we can add support for HTTP2 in Pippo.

We can do this by setting our own Jetty instance that we configure, but I can't see a reason to not enable HTTP2 by default for Jetty, can anyone else?...

Is there another less verbose way of converting a request parameter to an ENUM with case-**in**sensitive? The only way I saw it was implementing a convert, like this: ```java import...

It would be nice over all, but especially useful for Kotlin users, if Pippo's methods had nullability annotations. I can start adding these as I go, but in some cases...

I need to Add my Pippo Prject to microsoft azure appinsights and well as I want to see the telemetry and log traces in Azure Appinsights. How can we do...

question

I think the common case of using resource handlers is to register all the required handlers/controllers first, and register a resource handler as fallback handler, e.g. ``` GET /test1 ->...

The only way I found is to cast `WebSocketContext.connection` to container-specific classes.

Looks like filter registered via code taken from documentation ignores web socket requests. The code used is ```java ANY("/.*", routeContext -> { log.info("Request for {} '{}'", routeContext.getRequestMethod(), routeContext.getRequestUri()); routeContext.next(); });...

In my applications based on Pippo I feel that I'm missing a `route(, paramId_1:paramValue_1, ...)` method in my html templates. For example, in [companies.peb](https://github.com/decebals/matilda/blob/master/src/main/resources/templates/admin/views/companies.peb) file I have something like: ```...

enhancement
proposal