spring-security - where can I find the list of ALL security filters registered when I use the element?

后端 未结 3 1719
误落风尘
误落风尘 2020-12-25 14:38

There are a default set of filters registered when we use the element in our xml file. This mentions the ordering of filters (whichever we choose t

3条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-25 15:08

    Another thing you can do in Spring Security 3.1 is add

    
    

    or

    @EnableWebSecurity(debug = true)

    to your application context. This adds an extra filter which will (amongs other things) report the list of security filters that will be applied to each request.

提交回复
热议问题