Ludovic Orban
Ludovic Orban
We have to decide if we like this mechanism or not. If we do, ResourceCollection needs a way to be able to return the non-dir resources it contains from a...
Oh and favicon went away because it's supposed to be served by DefaultHandler, not by any DefaultServlet nor ResourceHandler.
See https://github.com/eclipse/jetty.project/issues/8443 and https://github.com/eclipse/jetty.project/issues/8456
This looks redundant with the idle timeout mechanism to me. What's this bringing that idleTimeout cannot do, or what am I missing?
@sbordet my point isn't where to get the timeout value from, but rather than the idleTimeout mechanism should be the only one that unblocks the awaiting thread after a certain...
While you're a it, I think there is a bug in ee9 `ContextHandler.checkAlias`: if the resource is an alias but there are no alias checks then `false` is returned while...
Something doesn't feel right, he's why I believe `ContextHandler.checkAlias` is buggy in its current form: if one creates a ee9 `DefaultServlet` to serve the contents of a JAR file then...
Adding the `AllowedResourceAliasChecker` isn't needed if the resource is backed by a `file:///` URI, but it is if the resource is backed by a `jar:file:///` URI. This is surprising, inconsistent...
@gregw thanks for the explanation / reminder about what aliases and alias checking are about. That summary of yours is definitely worth a place somewhere in the javadoc.
This is related to https://github.com/eclipse/jetty.project/issues/8462 as well.