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

I think that is time to talk about Pippo 2.x roadmap. Pippo is maintained under the [Semantic Versioning](https://semver.org) guidelines, so in a new major version (2.0 in our case) we...

It would be nice to have maven bom file like https://github.com/apache/logging-log4j2/blob/master/log4j-bom/pom.xml , to be able to specify pippo version only once like I do for log4j: ```xml org.apache.logging.log4j log4j-bom ${log4j.version}...

enhancement

Pippo allows providing the settings via "application.properties" files. In our application, we already have a custom setting file. Right now we have our own settings and the Pippo settings file....

Related to #344 and #344 ```java public Response filenameHeader(String filename) { if (filename != null && !filename.isEmpty()) { header(HttpConstants.Header.CONTENT_DISPOSITION, "attachment; filename=\"" + filename + "\""); } else { header(HttpConstants.Header.CONTENT_DISPOSITION, "attachment;...

In case of NOT_MODIFIED, UriResourceHandler.streamResource() calls `routeContext.getResponse().commit()`. However this method doesn't set `isCommited` flag for the request. `isCommited()` value is derived from the fact that response is started to stream...

I would like to know what applications or who are using Pippo. Thanks!

question

The `ErrorHandler` interface is only designed for Exception and its subclasses, but the hierarchy is rooted at Throwable. Especially some 500 errors are of type Error. I had an instance...