java

关注公众号 jb51net

关闭
首页 > 软件编程 > java > 认证授权中AuthenticationManager无法注入

认证授权中解决AuthenticationManager无法注入问题

作者:佛说"獨"

这篇文章主要介绍了认证授权中解决AuthenticationManager无法注入问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教

认证授权中AuthenticationManager无法注入

在启动springboot项目时,提示AuthenticationManager无法注入问题

报如下错误

Description:

Field authenticationManager in com.security.uaa.config.AuthorizationServer required a bean of type 'org.springframework.security.authentication.AuthenticationManager' that could not be found.

The injection point has the following annotations:
    - @org.springframework.beans.factory.annotation.Autowired(required=true)

解决方法

在继承 WebSecurityConfigurerAdapter 的类中配置

代码:

@Bean
@Override
public AuthenticationManager authenticationManagerBean() throws Exception {
    return super.authenticationManagerBean();
}

总结

以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。

您可能感兴趣的文章:
阅读全文