认证授权中解决AuthenticationManager无法注入问题
目录
- 认证授权中AuthenticationManager无法注入
- 报如下错误
- 解决方法
- 总结
认证授权中AuthenticationManager无法注入
在启动springboot项目时,提示AuthenticationManager无法注入问题
报如下错误
Description:
Field authenticationManager in com.security.uaa.config.AuthjsorizationServer required a bean of type 'org.springframework.security.authentication.AuthenticationManagwww.devze.comer' that could not be found.
The injection point has the following annotation编程s:
- @org.springframework.beawww.devze.comns.factory.annotation.Autowired(required=true)
解决方法
在继承 WebSecurityConfigurerAdapter 的类中配置
代码:
@Bean @Override public AuthenticationM编程anager authenticationManagerBean() throws Exception { return super.authenticationManagerBean(); }
总结
以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程客栈(www.devze.com)。
精彩评论