文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

如何使用SpringBoot 配置Oracle和H2双数据源

2023-06-25 16:18

关注

这篇文章给大家分享的是有关如何使用SpringBoot 配置Oracle和H2双数据源的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。

配置POM

<!-- oracle --> <dependency>     <groupId>com.github.noraui</groupId>     <artifactId>noraui</artifactId>     <version>2.4.0</version> </dependency><!-- h3--> <dependency>     <groupId>com.h3database</groupId>     <artifactId>h3</artifactId>     <version>1.4.197</version> </dependency> <!-- mybatisplus --> <dependency>   <groupId>com.baomidou</groupId>      <artifactId>mybatis-plus-boot-starter</artifactId>      <version>3.1.1</version> </dependency>

配置yml

spring:  http:    encoding:      charset: UTF-8      enabled: true      force: true  datasource:    driver-class-name: org.h3.Driver    schema: classpath:h3/schema-h3.sql    data: classpath:h3/data-h3.sql    jdbc-url: jdbc:h3:file:D:/Cache/IdeaWorkSpace/BigData/CustomerModel/src/main/resources/h3/data/h3_data    username: root    password: a123456    initialization-mode: always    oracle:     driver-class-name: oracle.jdbc.driver.OracleDriver     jdbc-url: jdbc:oracle:thin:@xxx:1521:cmis     username: xxx     password: xxx  h3:    console:      enabled: true      path: /h3-console

可以看到配置中配置了两个数据源,主数据源是H2,第二个数据源是Oracle,接下来是通过配置类来注入数据源

配置注入

配置H2主数据源

package com.caxs.warn.config;import org.apache.ibatis.session.SqlSessionFactory;import org.mybatis.spring.SqlSessionFactoryBean;import org.mybatis.spring.annotation.MapperScan;import org.springframework.beans.factory.annotation.Qualifier;import org.springframework.boot.context.properties.ConfigurationProperties;import org.springframework.boot.jdbc.DataSourceBuilder;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;import org.springframework.jdbc.core.JdbcTemplate;import org.springframework.jdbc.datasource.DataSourceTransactionManager;import javax.sql.DataSource;@Configuration@MapperScan(basePackages = "com.caxs.warn.mapper.h3", sqlSessionFactoryRef = "h3SqlSessionFactory")public class H2DSConfig {    @Bean(name = "h3DataSource")    @ConfigurationProperties(prefix = "spring.datasource")    public DataSource dataSource() {        return DataSourceBuilder.create().build();    }    @Bean(name = "h3TransactionManager")    public DataSourceTransactionManager transactionManager() {        return new DataSourceTransactionManager(this.dataSource());    }    @Bean(name = "h3SqlSessionFactory")    public SqlSessionFactory sqlSessionFactory(@Qualifier("h3DataSource") DataSource dataSource) throws Exception {        final SqlSessionFactoryBean sessionFactory = new SqlSessionFactoryBean();        sessionFactory.setDataSource(dataSource);        sessionFactory.getObject().getConfiguration().setMapUnderscoreToCamelCase(true);        return sessionFactory.getObject();    }    @Bean(name = "h3Template")    public JdbcTemplate h3Template(@Qualifier("h3DataSource") DataSource dataSource) {        return new JdbcTemplate(dataSource);    }}

配置oracle从数据源

package com.caxs.warn.config;import org.apache.ibatis.session.SqlSessionFactory;import org.mybatis.spring.SqlSessionFactoryBean;import org.mybatis.spring.annotation.MapperScan;import org.springframework.beans.factory.annotation.Qualifier;import org.springframework.boot.context.properties.ConfigurationProperties;import org.springframework.boot.jdbc.DataSourceBuilder;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;import org.springframework.jdbc.core.JdbcTemplate;import org.springframework.jdbc.datasource.DataSourceTransactionManager;import javax.sql.DataSource;@Configuration@MapperScan(basePackages = "com.caxs.warn.mapper.oracle",sqlSessionFactoryRef = "oracleSqlSessionFactory")public class OracleDSConfig {    @Bean(name = "oracleDataSource")    @ConfigurationProperties(prefix = "spring.datasource.oracle")    public DataSource dataSource() {        return DataSourceBuilder.create().build();    }    @Bean(name = "oracleTransactionManager")    public DataSourceTransactionManager transactionManager() {        return new DataSourceTransactionManager(this.dataSource());    }    @Bean(name = "oracleSqlSessionFactory")    public SqlSessionFactory sqlSessionFactory(@Qualifier("oracleDataSource") DataSource dataSource) throws Exception {        final SqlSessionFactoryBean sessionFactory = new SqlSessionFactoryBean();        sessionFactory.setDataSource(dataSource);        sessionFactory.getObject().getConfiguration().setMapUnderscoreToCamelCase(true);        return sessionFactory.getObject();    }    @Bean(name = "oracleTemplate")    public JdbcTemplate oracleTemplate(@Qualifier("oracleDataSource") DataSource dataSource) {        return new JdbcTemplate(dataSource);    }}

问题

Schema “classpath:h3/schema-h3.sql” not found

经过上面的配置就可以使用双数据源了,但是当我们测试时会发现报如下错误:Schema “classpath:h3/schema-h3.sql” not found,这个问题我也是找了好久,因为在配置但数据源的时候没有这个问题的,在配置多数据源才有了这个问题。

如何使用SpringBoot 配置Oracle和H2双数据源   

单数据源时,是直接SpringBoot自动配置DataSource的,这个时候是正常的,而当配置多数据源时,我们是通过@Configuration来配置数据源的,怀疑问题出在 DataSourceBuilder 创建数据源这个类上,而单数据源自动装载时不会出现这样的问题。然后百度搜了下这个DataSourceBuilder,看到文章中实例的配置中schema是这样写的:

package com.caxs.warn.service;import org.slf4j.Logger;import org.slf4j.LoggerFactory;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.beans.factory.annotation.Qualifier;import org.springframework.beans.factory.annotation.Value;import org.springframework.boot.ApplicationArguments;import org.springframework.boot.ApplicationRunner;import org.springframework.core.io.ClassPathResource;import org.springframework.jdbc.core.JdbcTemplate;import org.springframework.stereotype.Component;import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;@Componentpublic class ApplicationRunnerService implements ApplicationRunner {    private static final Logger LOGGER = LoggerFactory.getLogger(ApplicationRunnerService.class);    @Autowired    @Qualifier("h3Template")    private JdbcTemplate h3Template;    @Value("${invoke.schema.location}")    private String schema;    @Value("${invoke.data.location}")    private String data;        @Override    public void run(ApplicationArguments args) {        String schemaContent = this.getFileContent(schema);        String dataContent = this.getFileContent(data);        h3Template.execute(schemaContent);        h3Template.execute(dataContent);    }        private String getFileContent(String filePath) {        BufferedReader bufferedReader = null;        String string;        StringBuilder data = new StringBuilder();        try {            ClassPathResource classPathResource = new ClassPathResource(filePath);            bufferedReader = new BufferedReader(new InputStreamReader(classPathResource.getInputStream()));            while ((string = bufferedReader.readLine()) != null) {                data.append(string);            }        } catch (IOException e) {            LOGGER.error("加载ClassPath资源失败", e);        }finally {            if(null != bufferedReader){                try {                    bufferedReader.close();                } catch (IOException e) {                    e.printStackTrace();                }            }        }        return data.toString();    }}

如何使用SpringBoot 配置Oracle和H2双数据源   

抱着尝试的态度改了下,发现果然没问题了!!原来是在SpringBoot2.0之后schema对应的DataSourceProperties类中schema属性是一个List,所以需要前面加 - (yml中加-映射集合),记录下防止后面再踩坑。

如何使用SpringBoot 配置Oracle和H2双数据源

如何使用SpringBoot 配置Oracle和H2双数据源

Table “USER” not found; SQL statement:

如何使用SpringBoot 配置Oracle和H2双数据源   

这个问题也是在只有配置多数据源时才会碰到的问题,就是配置的spring.datasource.schema和spring.datasource.data无效。这个我看了下如果是配置单数据源,springboot自动加载Datasource,是没问题的,但是现在是我们自己维护的datasource: return DataSourceBuilder.create().build();所以感觉还是DataSourceBuilder在加载数据源的时候的问题,但是还是没有找到原因。有网友说必须加initialization-mode: ALWAYS这个配置,但是我配置后也是不能用的。

如何使用SpringBoot 配置Oracle和H2双数据源   

最后没办法就配置了一个类,在springboot启动后,自己加载文件,读取其中的sql内容,然后用jdbcTemplate去执行了下,模拟了下初始化的操作。。。后面如果有时间再来解决这个问题。

package com.caxs.warn.service;import org.slf4j.Logger;import org.slf4j.LoggerFactory;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.beans.factory.annotation.Qualifier;import org.springframework.beans.factory.annotation.Value;import org.springframework.boot.ApplicationArguments;import org.springframework.boot.ApplicationRunner;import org.springframework.core.io.ClassPathResource;import org.springframework.jdbc.core.JdbcTemplate;import org.springframework.stereotype.Component;import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;@Componentpublic class ApplicationRunnerService implements ApplicationRunner {    private static final Logger LOGGER = LoggerFactory.getLogger(ApplicationRunnerService.class);    @Autowired    @Qualifier("h3Template")    private JdbcTemplate h3Template;    @Value("${invoke.schema.location}")    private String schema;    @Value("${invoke.data.location}")    private String data;        @Override    public void run(ApplicationArguments args) {        String schemaContent = this.getFileContent(schema);        String dataContent = this.getFileContent(data);        h3Template.execute(schemaContent);        h3Template.execute(dataContent);    }        private String getFileContent(String filePath) {        BufferedReader bufferedReader = null;        String string;        StringBuilder data = new StringBuilder();        try {            ClassPathResource classPathResource = new ClassPathResource(filePath);            bufferedReader = new BufferedReader(new InputStreamReader(classPathResource.getInputStream()));            while ((string = bufferedReader.readLine()) != null) {                data.append(string);            }        } catch (IOException e) {            LOGGER.error("加载ClassPath资源失败", e);        }finally {            if(null != bufferedReader){                try {                    bufferedReader.close();                } catch (IOException e) {                    e.printStackTrace();                }            }        }        return data.toString();    }}

感谢各位的阅读!关于“如何使用SpringBoot 配置Oracle和H2双数据源”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     801人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     348人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     311人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     432人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     220人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯