当前位置: 首页 > 知识库问答 >
问题:

Spring BootOAuth2实现:NoSuchBean定义异常:没有身份验证管理器类型的合格bean

归明诚
2023-03-14

org.springframework.beans.factory.未满足的依赖异常:创建名称为“授权ServerConfig”的bean时出错:通过字段“身份验证管理器”表示的依赖项未满足;嵌套异常org.springframework.beans.factory.NoSuchBean定义异常:没有可用类型为“org.springframework.security.authentication.身份验证管理器”的合格bean:预计至少有1个bean符合自动连接候选条件。依赖注释:{@org.springframework.beans.factory.annotation.自动连接(必需=true)}

嗨,我有Spring启动Web应用程序,我试图通过以下示例使用Spring Security和OAuth2实现登录/授权-身份验证系统:https://www.youtube.com/watch?v=dTAgI_UsqMg

一切都很好,但是当我运行我的应用程序时,我收到异常,说它找不到 AuthenticationManager 的 bean,甚至认为它在那里并自动连线。

纵观互联网,这似乎是一个知道或常见的问题,但我找不到合适的解决方法

有些人建议“公开”身份验证管理器bean,我不确定这在这种情况下意味着什么

这是我目前在github上的项目链接:https://github.com/chenchi13/spring-boot-cms

有人能帮我弄清楚吗?

引发异常的类:

@EnableResourceServer
@Configuration                                                      
public class ResourceServerConfig extends WebSecurityConfigurerAdapter {

    @Autowired
    private AuthenticationManager authenticationManager;
    @Autowired
    private UserDetailsService customUserDetailService;

    @Override
    protected void configure(HttpSecurity http) throws Exception {

        http.requestMatchers()
                .antMatchers("/login", "/oauth/authorize")
                .and()
                .authorizeRequests()
                .anyRequest()
                .authenticated()
                .and()
                .formLogin()
                .permitAll();
    }


    @Override
    protected void configure(AuthenticationManagerBuilder auth) throws Exception {

        //auth.parentAuthenticationManager(authenticationManager)
        //        .inMemoryAuthentication()
        //        .withUser("Peter")
        //        .password("peter")
        //        .roles("USER");

        auth.parentAuthenticationManager(authenticationManager)
                .userDetailsService(customUserDetailService);
    }
}

授权服务器配置:

@Configuration
@EnableAuthorizationServer
public class AuthorizationServerConfig extends AuthorizationServerConfigurerAdapter {

    @Autowired
    private AuthenticationManager authenticationManager;

    @Override
    public void configure(AuthorizationServerSecurityConfigurer security) throws Exception {

        security.tokenKeyAccess("permitAll()")
                .checkTokenAccess("isAuthenticated()");
    }


    @Override
    public void configure(ClientDetailsServiceConfigurer clients) throws Exception {
        clients
                .inMemory()
                .withClient("ClientId")
                .secret("secret")
                .authorizedGrantTypes("authorization_code")
                .scopes("user_info")
                .autoApprove(true);
    }


    @Override
    public void configure(AuthorizationServerEndpointsConfigurer endpoints) throws Exception {

        endpoints.authenticationManager(authenticationManager);
    }
}

共有2个答案

万俟心思
2023-03-14

我认为您缺少身份验证管理器bean的定义。我正在添加以下行,检查一次:

@Configuration
@EnableWebSecurity
@EnableGlobalMethodSecurity(prePostEnabled = true)
public class SecurityConfig extends WebSecurityConfigurerAdapter {

   // Other Details

   @Bean
   @Override
   protected AuthenticationManager authenticationManager() throws Exception {
      return super.authenticationManager();
   }

   @Override
   protected void configure(AuthenticationManagerBuilder auth) throws Exception {
      auth.userDetailsService(userDetailsService)
              .passwordEncoder(new ShaPasswordEncoder(encodingStrength));
   }

   @Override
   protected void configure(HttpSecurity http) throws Exception {
      http
              .sessionManagement()
              .sessionCreationPolicy(SessionCreationPolicy.STATELESS)
              .and()
              .httpBasic()
              .realmName(securityRealm)
              .and()
              .csrf()
              .disable();

   }

 // Other Details

}

你可以浏览下面的参考链接。

参考:带有JWT和OAuth2.0的Spring Boot

希望这对你有帮助:)

穆招
2023-03-14

ResourceServerConfig中删除以下内容:

@Autowired
private AuthenticationManager authenticationManager;

并更改配置方法,如下所示:

@Override
protected void configure(AuthenticationManagerBuilder auth) throws Exception {
    auth.userDetailsService(customUserDetailService);
}

还要覆盖ResourceServerConfig中的以下方法:

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

这应该可以解决您的问题。

 类似资料:
  • 我有Springmvc应用程序。我添加了带有CustomAuthentiationManager的Spring Security。这是appC中包含的application-security.xmlontex.xml.login.jsp我使用带有2个输入的标准登录页面:name='j_username'

  • 我正在编写一个程序,它使用了带有Spring Security的JWT身份验证。我已经实现了自定义授权和身份验证过滤器。另外,我需要持久化我的令牌,它是由这些过滤器形成的。为此,我创建了令牌DAO服务,它自动连接到过滤器,并用注释标记我的过滤器以自动连接该服务。但我无法正确自动执行身份验证管理器。 我尝试在安全配置类中公开身份验证管理器bean,但没有结果。 这个错误是我在尝试构建项目时遇到的。

  • 我通过不带out名称的配置创建bean 用法: 当我运行应用程序时,它无法启动 并抛出NoSuchBean定义异常: 找不到符合依赖项要求的[DbClient]类型的bean:需要至少1个符合此依赖项autowire候选的bean。依赖项注释:{@org.springframework.beans.factory.annotation.Autowired(必需=true)} 但我通过添加名称来修复

  • spring-security.xml: 在新泽西行动豆的内部是这样的: 整个应用程序构建良好,jetty服务器启动没有问题(MyAuthenticationManager和org.springframework.security.AuthenticationManager都成功地预安装了),但是当尝试使用autowired authmanager时,我得到了空指针。

  • 我遵循了这里提到的一些建议,但它对我不起作用。因此,把问题放在这里 如何在自定义筛选器中使用Java配置注入身份验证管理器 Spring需要一个类型为“身份验证管理器”的bean 有人能指导我什么是问题以及如何解决吗? 错误: AuthorizationServerConfig.java ResourceServerConfig.java 代码引用取自https://github.com/Tech

  • 我正在尝试使用paramiko对设备进行ssh操作,并在虚拟环境中使用以下代码运行一些命令 从getpass导入paramiko导入getpass 如果name==“main”: 当我尝试运行上面的代码时,我得到以下错误: 文件“param.py”,第14行,s.connect(hostname=主机名,username=用户名,password=密码)文件“/users/myuser/myvir