htwx 发表于 2023-8-15 09:00:41

spring项目bean创建报错

Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'tokenRepository' defined in com.example.config.SecurityConfiguration: Initialization of DAO failed
                at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1770)
                at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:598)
                at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:520)
                at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:326)
                at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
                at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:324)
                at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
                at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
                at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1417)
                at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1337)
                at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:888)
                at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:791)
                ... 78 more
        Caused by: org.springframework.beans.factory.BeanInitializationException: Initialization of DAO failed
                at org.springframework.dao.support.DaoSupport.afterPropertiesSet(DaoSupport.java:51)
                at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1816)
                at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1766)
                ... 89 more

isdkz 发表于 2023-8-15 09:01:02

这个错误是由于在 com.example.config.SecurityConfiguration 类中定义的 tokenRepositorybean初始化失败导致的。根据堆栈跟踪,可以看到 tokenRepositorybean的初始化依赖于一个DAO(数据访问对象),而这个DAO的初始化失败导致了整个bean的初始化失败。

要解决这个问题,首先需要检查 tokenRepositorybean的定义和配置。确保在 SecurityConfiguration 类中正确配置了 tokenRepositorybean,并且它的依赖关系正确设置。

其次,检查DAO的初始化过程。根据堆栈跟踪,可以看到DAO实现了 DaoSupport 接口,并且在 afterPropertiesSet 方法中进行了初始化。因此,需要检查DAO的实现类,确保它正确实现了 DaoSupport 接口,并在 afterPropertiesSet 方法中进行了必要的初始化操作。

最后,检查DAO所依赖的其他组件或配置。根据堆栈跟踪,可能存在其他的依赖关系导致DAO初始化失败。确保这些依赖关系正确配置和初始化。

总结:要解决这个问题,需要检查 tokenRepositorybean的定义和配置,检查DAO的实现类和初始化过程,以及检查DAO所依赖的其他组件或配置。通过逐步排查,找到导致初始化失败的具体原因,并进行相应的修复。

陶远航 发表于 2023-8-15 09:01:19

根据您提供的错误信息,可以看出出现了以下异常:BeanCreationException: Error creating bean with name 'tokenRepository' defined in com.example.config.SecurityConfiguration: Initialization of DAO failed ,以及 BeanInitializationException: Initialization of DAO failed。这表明在创建名为 tokenRepository 的 Bean 时,在 DAO 初始化阶段发生了异常。

要解决这个问题,您可以尝试以下几个步骤:

1. 检查 com.example.config.SecurityConfiguration 类中名为 tokenRepository 的 Bean 的定义,确保它正确配置且没有错误的属性设置。

2. 确保 tokenRepository 所依赖的其他 Bean 已经正确配置和初始化。检查这些依赖关系,确保它们都可用并正确注入到 tokenRepository 中。

3. 检查 tokenRepository 相关的 DAO 类(可能是接口或具体的实现类)的定义和配置。确认该类的相关依赖项已经配置正确,并且数据库连接等必要的资源已正确设置。

4. 检查日志文件或控制台输出,查找更详细的错误堆栈跟踪信息。错误堆栈中可能有更具体的错误消息,可以帮助确定出错的位置和原因。

总之,该错误表明在创建并初始化 tokenRepository Bean 的过程中发生了错误。您需要仔细检查相关的配置和依赖项,并查找更具体的错误消息来确定问题所在。

如果问题仍然存在,建议提供更多相关的代码和配置信息,以便能够更准确地帮助您解决问题。
如果问题已经解决,请设置最佳答案

htwx 发表于 2023-8-15 09:40:55

package com.example.config;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
import org.springframework.security.config.annotation.web.configurers.AbstractHttpConfigurer;
import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
import org.springframework.security.web.SecurityFilterChain;
import org.springframework.security.web.authentication.rememberme.JdbcTokenRepositoryImpl;
import org.springframework.security.web.authentication.rememberme.PersistentTokenRepository;
import org.springframework.stereotype.Repository;

import javax.sql.DataSource;

//开启WebSecurity相关功能

@Configuration
@EnableWebSecurity
@ComponentScan(basePackages = "com.example")
public class SecurityConfiguration {

    @Bean
    public BCryptPasswordEncoder passwordEncoder(){
   return new BCryptPasswordEncoder();
    }


    @Bean
    public PersistentTokenRepository tokenRepository(DataSource dataSource){
      JdbcTokenRepositoryImpl repository = new JdbcTokenRepositoryImpl();
      repository.setDataSource(dataSource);
      repository.setCreateTableOnStartup(true);
      return repository;
    }

    @Bean
    public SecurityFilterChain filterChain(HttpSecurity http, PersistentTokenRepository repository) throws Exception {
      return http.authorizeHttpRequests(auth->{
                  auth.requestMatchers("/static/**").permitAll();
                  auth.anyRequest();
                })
                .formLogin(conf->{
                  conf.loginPage("/login");
                  conf.loginProcessingUrl("/doLogin");
                  conf.defaultSuccessUrl("/");
                  conf.permitAll();
                })
                .csrf(AbstractHttpConfigurer::disable)
                .rememberMe(conf->{
                  conf.tokenRepository(repository);
                  conf.tokenValiditySeconds(3600*24*7);
                })
                .build();
    }

}

这是我SecurityConfiguration的代码,全部使用注解开发的
页: [1]
查看完整版本: spring项目bean创建报错