idea如何debug看springsecurity的过滤器顺序
-
先配置一个Spring启动对象,后续需要根据这个对象来获取SpringSecurity的过滤器链
-
设置一个输出信息,需要在输出信息这里打上断点,才方便查看过滤器链
public static void main(String[] args) { //此时不能直接启动 //SpringApplication.run(Application.class, args); //需要先配置一个Spring启动对象 ConfigurableApplicationContext applicationContext = SpringApplication.run(Application.class, args); //设置一个输出信息,可以是普通的sout输出 log.info("main run success..."); }
-
debug启动后,走到输出这里
-
点击调试框的计算器图标,或按
Alt + F8
-
输入
applicationContext.getBean(FilterChainProxy.class)
,点击Evaluate文章来源:https://www.toymoban.com/news/detail-852372.html//applicationContext就是我们刚刚配置的Spring启动对象的名字 //FilterChainProxy是我们要看的过滤器链 applicationContext.getBean(FilterChainProxy.class)
此时就能查看到SpringSecurity的过滤器链顺序了文章来源地址https://www.toymoban.com/news/detail-852372.html
到了这里,关于idea如何debug看springsecurity的过滤器顺序的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!