You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In EmbeddedWebApplicationContext.getServletContextInitializerBeans(), beans are ordered within their type but not across types, even if the underlying types are the same. This causes a problem if FilterRegistrationBean is used to define a filter (e.g., a Wicket filter). Because FilterRegistrationBean implements ServletContextInitializer, its filter is added to the list of initializers before the spring security filters, which are added as regular filters. When the application launches, the spring security filters are added after the other filters.