I\'m using Spring-Security 3.2.4 and Spring Boot 1.1.0 (and it\'s related dependencies versions 4.X). I\'m writing a web application that will be run in an embedded tomcat.<
The FilterChainProxy
use by Spring Security is not Ordered
(if it was you could order all your filters). But you should be able to register it in a FilterRegistrationBean
which is Ordered
and register your other filters the same way. In the case of the security filter you can inject it by name into the registration bean. The others you can probably inject by calling a @Bean
method.