Jetty version(s)
9.4.45
Description
In 9.4.44, ContextHandler.getAliasChecks() returned a mutable collection, and Spring Boot's JettyServletWebServerFactory was calling ContextHandler.getAliasChecks().clear() -- instead of ContextHandler.clearAliasChecks().
In 9.4.45, the collection returned by getAliasChecks() is now immutable, so clear() now throws UnsupportedOperationException.