SpringBoot应用程序。使用JdbcTemplate访问2个DataSource

时间:2018-02-15 09:36:03

标签: spring spring-boot spring-data spring-jdbc jdbctemplate

我有一个SpringBoot应用程序。必须访问不同的数据源才能将数据从1导出到另一个(1个本地数据源和另一个远程数据源)

这就是我的persistenceConfig的样子

public class PersistenceConfig {

    @Bean
    public  JdbcTemplate localJdbcTemplate() {
        return new JdbcTemplate(localDataSource());
    }

    @Bean
    public  JdbcTemplate remoteJdbcTemplate() {
        return new JdbcTemplate(remoteDataSource());
    }



    @Bean
    public DataSource localDataSource(){

        HikariConfig config = new HikariConfig();
        config.setMaximumPoolSize(getLocalDbPoolSize());
        config.setMinimumIdle(5);
        config.setDriverClassName(getLocalDbDriverClassName());
        config.setJdbcUrl(getLocalDbJdbcUrl());
        config.addDataSourceProperty("user", getLocalDbUser());
        config.addDataSourceProperty("password", getLocalDbPwd());

        return new HikariDataSource(config);
    }


    @Bean
    public DataSource remoteDataSource(){

        HikariConfig config = new HikariConfig();
        config.setMaximumPoolSize(getRemoteDbPoolSize());
        config.setMinimumIdle(5);
        config.setDriverClassName(getRemoteDbDriverClassName());
        config.setJdbcUrl(getRemoteDbJdbcUrl());
        config.addDataSourceProperty("user", getRemoteDbUser());
        config.addDataSourceProperty("password", getRemoteDbPwd());

        return new HikariDataSource(config);
    }
}

但是当我启动我的应用程序时,我收到了这个错误:

Caused by: org.springframework.beans.factory.NoUniqueBeanDefinitionException: No qualifying bean of type 'javax.sql.DataSource' available: expected single matching bean but found 2: localDataSource,remoteDataSource

我还尝试使用限定bean,如下所示:

@Bean(name = "localJdbcTemplate")
    public  JdbcTemplate localJdbcTemplate() {
        return new JdbcTemplate(localDataSource());
    }


    @Bean(name = "remoteJdbcTemplate")
    public  JdbcTemplate remoteJdbcTemplate() {
        return new JdbcTemplate(remoteDataSource());
    }



    @Bean(name = "localDataSource")
    public DataSource localDataSource(){

        HikariConfig config = new HikariConfig();
        config.setMaximumPoolSize(getLocalDbPoolSize());
        config.setMinimumIdle(5);
        config.setDriverClassName(getLocalDbDriverClassName());
        config.setJdbcUrl(getLocalDbJdbcUrl());
        config.addDataSourceProperty("user", getLocalDbUser());
        config.addDataSourceProperty("password", getLocalDbPwd());

        return new HikariDataSource(config);
    }


    @Bean(name = "remoteDataSource")
    public DataSource remoteDataSource(){

        HikariConfig config = new HikariConfig();
        config.setMaximumPoolSize(getRemoteDbPoolSize());
        config.setMinimumIdle(5);
        config.setDriverClassName(getRemoteDbDriverClassName());
        config.setJdbcUrl(getRemoteDbJdbcUrl());
        config.addDataSourceProperty("user", getRemoteDbUser());
        config.addDataSourceProperty("password", getRemoteDbPwd());

        return new HikariDataSource(config);
    }

然后我又遇到了另一个错误:

A component required a bean of type 'org.springframework.transaction.PlatformTransactionManager' that could not be found.
    - Bean method 'transactionManager' not loaded because @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) did not find a primary bean from beans 'remoteDataSource', 'localDataSource'

我也试过

@SpringBootApplication(exclude = {
            DataSourceAutoConfiguration.class, 
            DataSourceTransactionManagerAutoConfiguration.class})
    @EnableAutoConfiguration(exclude = {
            DataSourceAutoConfiguration.class, 
            DataSourceTransactionManagerAutoConfiguration.class})

然后我得到了

A component required a bean of type 'org.springframework.transaction.PlatformTransactionManager' that could not be found.

2 个答案:

答案 0 :(得分:2)

您可以使用bean名称来限定它们:

@Bean(name = "localDataSource")
public DataSource localDataSource() {
  ...
}

@Bean(name = "remoteDataSource")
public DataSource remoteDataSource() {
  ...
}

请注意:您必须对JdbcTemplate bean执行相同的操作 - 只需为它们命名即可。 有关更多信息,请参阅Spring JavaDoc:Bean

@Bean(name = "localJdbcTemplate")
public JdbcTemplate localJdbcTemplate() {
  return new JdbcTemplate(localDataSource());
}

当您通过自动装配(@Autowired)在导出服务实现中使用JdbcTemplate bean时,您需要使用@Qualifier来限定它们:

@Autowired
@Qualifier("localJdbcTemplate")
private JdbcTemplate jdbcTemplate;

@Autowired
@Qualifier("remoteJdbcTemplate")
private JdbcTemplate jdbcTemplate;

答案 1 :(得分:1)

Bean从方法名称获取其名称,提供name属性只是使其显式(保持名称与方法名称相同)。关于@Bean(name="...")@Qualifier的总体建议没有为我解决错误。

我使用两个嵌入式数据库设置了示例项目,并获得了与aothor相同的错误。 Spring的建议是将其中一个DataSource bean注释为@Primary,事实上,这会修复错误。通常会发生这种情况,当一些其他应用程序部分只想看到一个或一个主数据源时,如果有几个存在。

什么似乎是一个更好的解决方案是禁用不需要的自动配置bean保持代码的其余部分:

@SpringBootApplication(exclude = {
    DataSourceAutoConfiguration.class, 
    DataSourceTransactionManagerAutoConfiguration.class})

或:

@EnableAutoConfiguration(exclude = {
    DataSourceAutoConfiguration.class, 
    DataSourceTransactionManagerAutoConfiguration.class})

取决于正在使用的注释。

如果作者不使用任何JPA提供程序并直接使用JdbcTemplate,那么它可能是一个合适的解决方案。