Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use Handler.Sequence in place of ContextHandlerCollection #2609

Merged

Commits on Nov 18, 2024

  1. Using the more generic org.eclipse.jetty.server.Handler in place of t…

    …he more specific org.eclipse.jetty.server.handler.ContextHandler implementation. According to the [Migration Guide](https://jetty.org/docs/jetty/12/programming-guide/migration/11-to-12.html#api-changes-handler-sequence), Handler.Sequence replaced HandlerCollection and HandlerList. ContextHandlerCollection is retained for its efficient child ContextHandler selection. Unless performance considerations or the need for a more restrictive implementation justify it, a more generic implementation reduces code complexity and provides greater functional possibilities for plugins.
    “Huy committed Nov 18, 2024
    Configuration menu
    Copy the full SHA
    ecb0278 View commit details
    Browse the repository at this point in the history

Commits on Nov 19, 2024

  1. Configuration menu
    Copy the full SHA
    63e1f9e View commit details
    Browse the repository at this point in the history