Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[jetty-users] Filter initialization order changed in 9.1.4?

It appears that the filter initialization order has changed in 9.1.4, is this intentional?

Previously the filters called 'init' in the order they are defined in web.xml  -- I *think* this has been true for a while (even if not part of the spec)
http://jira.codehaus.org/browse/JETTY-72


Digging a bit, i *think* it would be fixed using a LinkedHashMap in StandardDescriptorProcessor.java:

final Map<String,FilterHolder> _filterHolders = new HashMap<>();


thanks
ryan

Back to the top