Decebal Suiu
Decebal Suiu
I always try to improve the javadoc when I commit. I think that now is better but there is always room for better. Javadoc + documentation site + documentation from...
I added more content to the [documentation](http://www.pippo.ro) site. If you see some aspects that are not described please let me know. They are some [topics](https://github.com/pippo-java/pippo.github.io/issues) on the todo list.
It's related with #487. Actually, #487 is a subtask/subset of this issue.
Good news. I have a POC (a demo) for HTTP/2 in Pippo. Before to present you the code I will give you some information: - the demo use Jetty server...
To switch my HTTP/2 demo from Jetty to Undertow, all I made is to upgrade Undertow to the last version (2.0.17.Final). I remember you that I updated Servlet version to...
On `Tomcat` I encounter some problem. After I made some modifications in `TomcatServer` to enable HTTP/2: ```java private void enableSSLConnector(Tomcat tomcat) { // actual code // enable HTTP/2 connector.setAttribute("sslImplementationName", "org.apache.tomcat.util.net.openssl.OpenSSLImplementation");...
> http2 on undertow works out of the box Yes. I said the same thing in https://github.com/pippo-java/pippo/issues/490#issuecomment-457213332.
To not forget, I have a remark related to this subject. When I select multiple files, in server (by the way, I use Jetty in this project), I have multiple...
To be honest, I don't know why the slash from the end of uri was removed, probably for uniformity and to prepare the concatenation (to not check any time that...
Please come with a PR if you see improvements.