From 2.2.8.RELEASE to 2.3.3.RELEASE, order of ErrorPageFilter
has changed from Ordered.HIGHEST_PRECEDENCE + 1
to Ordered.LOWEST_PRECEDENCE
.
This causes the filter to handle every exception, originally handled by other filters in the chain.
The changed order might be introduced with #19471. The ErrorPageFilterConfiguration
has been enhanced to provide a ServletRegistrationBean
for the filter. Since this does not provide an order to the registration bean, it is defaulting to Ordered.LOWEST_PRECEDENCE
.