Ошибка при создании bean-компонента dataSource - PullRequest
0 голосов
/ 18 мая 2018

В этом классе определен dataSource, и я использую тот же компонент в классе springSecurityConfig.java, но он дает мне ошибку: No qualifying bean of type 'javax.sql.DataSource' available

ShoppingServletConfig.java

@Configuration
@EnableWebMvc
@EnableTransactionManagement
@ComponentScan(basePackages = "com.project.shopping")
public class ShoppingServletConfig {
 @Primary
 @Bean(name = "dataSource")
    public DataSource dataSource() {
        BasicDataSource dataSource = new BasicDataSource();
        dataSource.setDriverClassName("com.mysql.jdbc.Driver");
        dataSource.setUrl("jdbc:mysql://localhost:3306/shopping");
        dataSource.setUsername("root");
        dataSource.setPassword("root");
        return dataSource;
    }

   }

SpringSecurityConfig.java

@Configuration
@EnableWebSecurity

public class SpringSecurityConfig extends WebSecurityConfigurerAdapter {
@Autowired
@Qualifier("dataSource")
DataSource dataSource;
@Autowired
public void configureGlobal(AuthenticationManagerBuilder auth) throws Exception {
    auth
    .jdbcAuthentication()
    .dataSource(dataSource)
    .usersByUsernameQuery(
               "select username,password, enabled from user where user_name=?")
              .authoritiesByUsernameQuery(
               "select username, role from user_roles where user_name=?");
}

Ошибка в консоли выглядит следующим образом:

 org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'springSecurityConfig':
 Unsatisfied dependency expressed through field 'dataSource'; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'javax.sql.DataSource' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true), @org.springframework.beans.factory.annotation.Qualifier(value=dataSource)}

Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'javax.sql.DataSource' available: expected at least 1 bean which qualifies as autowire candidate.
 Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true), @org.springframework.beans.factory.annotation.Qualifier(value=dataSource)}

1 Ответ

0 голосов
/ 18 мая 2018

Иногда я делаю это так, когда заставляю Spring выполнять управление зависимостями в явном бине.Интерфейс конфигурации возвращается как анонимный класс:

@Configuration
@EnableWebSecurity
public class SpringSecurityConfig {

@Bean
public WebSecurityConfigurerAdapter securityAdapter (DataSource dataSource) {
    return new WebSecurityConfigurerAdapter () {
        @Override
        public void configureGlobal(AuthenticationManagerBuilder auth) throws Exception {
            auth.jdbcAuthentication()
                .dataSource(dataSource)
                .usersByUsernameQuery("select username,password, enabled from user where user_name=?")
                .authoritiesByUsernameQuery("select username, role from user_roles where user_name=?");
      }
   }
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...