OAuth2.0学习(4-11)spring-oauth-server分析 - http元素使用的是何种AuthenticationManager?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了OAuth2.0学习(4-11)spring-oauth-server分析 - http元素使用的是何种AuthenticationManager?相关的知识,希望对你有一定的参考价值。
1、在加载配置文件定义时,判断使用哪个AuthenticationManager
在配置文件Security.xml加载时,首先创建一个ProviderManager,然后
如果配置了默认AuthenauthManager(http的属性authentication-manager-ref),就用默认作为ProviderManager的parent
如果没有配置默认AuthenauthManager(http的属性authentication-manager-ref),ProviderManager的parent为null
认证时会先认证自己,后如果parent不为空,就接着认证parent。
2、过滤访问请求时,每个filter使用了那种AuthenticationManager
跟踪调试 filterChainProxy的filterChains(getFilters),可以发现filter使用了那种AuthenticationManager
以上是关于OAuth2.0学习(4-11)spring-oauth-server分析 - http元素使用的是何种AuthenticationManager?的主要内容,如果未能解决你的问题,请参考以下文章
OAuth2.0学习(4-1)Spring Security OAuth2.0 - 代码分析
OAuth2.0学习(4-99)Spring Security OAuth2.0 开发指南
OAuth2.0学习(5-4)新浪开放平台-微博API-使用OAuth2.0调用API
OAuth2.0学习(1-13)OAuth2.0的投票机制和投票器