Affects: 5.3.26


I'm trying to add some custom http filters to my spring application (not Spring Boot, just Spring Framework). I set to one of my filters @Order(Ordered.HIGHEST_PRECEDENCE) but while debugging I still see what it's called after another filter, which does not have specified order. And I saw that getServletContext().addFilter() and FilterRegistration don't have any methods to set filter order here. Documentation and examples found by me in the web only contains Spring Boot and/or said that @Order is enough to work.