0


springboot多数据源配置

简介

开发当中经常会遇到需要进行多库多表数据整合的需求,在无法拆分项目的情况下,就需要在一个项目中配置多数据源,实现多库数据的整合。
本文是在springboot框架的基础上进行的多数据源配置,可参考,也欢迎指正

1、第一步:application配置

application.yml配置如下:

  1. 在单数据源配置的基础上新增db名称的属性,这里起名为“db1”、“db2”,方便区分,如有需要也可以命名为自己需要的名字;
  2. 在对应的数据库配置下填入数据库的地址、端口号、账号、密码等信息;
  3. 切记数据库信息要匹配哦,否则会连接失败。
spring:datasource:db1:jdbc-url: jdbc:mysql://127.0.0.1:3306/db1?useSSL=false&useUnicode=true&characterEncoding=utf-8&allowMultiQueries=true&serverTimezone=UTC&allowPublicKeyRetrieval=trueusername: root
      password: root
      driver-class-name: com.mysql.cj.jdbc.Driver
    db2:jdbc-url: jdbc:mysql://127.0.0.1:3306/db2?useSSL=false&useUnicode=true&characterEncoding=utf-8&allowMultiQueries=true&serverTimezone=UTC&allowPublicKeyRetrieval=trueusername: root
      password: root
      driver-class-name: com.mysql.cj.jdbc.Driver

2、第二步:DataSourceConfig配置

每个数据库配置一个对应的DataSourceConfig

  1. class类名我使用的是DB1DataSourceConfig、DB2DataSourceConfig,更直观的对应application中配置的名称;
  2. @MapperScan:mapper层又分了“db1”,“db2”两个文件夹,分别实现相应数据库的持久化。所以在属性“basePackages”中要填入对应关系的包地址,确保连接正确;

DB1DataSourceConfig.java

importorg.apache.ibatis.session.SqlSessionFactory;importorg.mybatis.spring.SqlSessionFactoryBean;importorg.mybatis.spring.SqlSessionTemplate;importorg.mybatis.spring.annotation.MapperScan;importorg.springframework.beans.factory.annotation.Qualifier;importorg.springframework.boot.context.properties.ConfigurationProperties;importorg.springframework.boot.jdbc.DataSourceBuilder;importorg.springframework.context.annotation.Bean;importorg.springframework.context.annotation.Configuration;importorg.springframework.context.annotation.Primary;importorg.springframework.core.io.support.PathMatchingResourcePatternResolver;importjavax.sql.DataSource;@Configuration@MapperScan(basePackages ="com.test.myproject.mapper.db1",sqlSessionFactoryRef ="db1SqlSessionFactory")publicclassDB1DataSourceConfig{@Primary// 表示这个数据源是默认数据源, 这个注解必须要加,因为不加的话spring将分不清楚那个为主数据源(默认数据源)@Bean("db1DataSource")@ConfigurationProperties(prefix ="spring.datasource.db1")//读取application.yml中的配置参数映射成为一个对象publicDataSourcegetDb1DataSource(){returnDataSourceBuilder.create().build();}@Primary@Bean("db1SqlSessionFactory")publicSqlSessionFactorydb1SqlSessionFactory(@Qualifier("db1DataSource")DataSource dataSource)throwsException{SqlSessionFactoryBean bean =newSqlSessionFactoryBean();
        bean.setDataSource(dataSource);// mapper的xml形式文件位置必须要配置,不然将报错:no statement (这种错误也可能是mapper的xml中,namespace与项目的路径不一致导致)
        bean.setMapperLocations(newPathMatchingResourcePatternResolver().getResources("classpath*:mapper/*.xml"));// 持久化.xml文件的地址return bean.getObject();}@Primary@Bean("db1SqlSessionTemplate")publicSqlSessionTemplatedb1SqlSessionTemplate(@Qualifier("db1SqlSessionFactory")SqlSessionFactory sqlSessionFactory){returnnewSqlSessionTemplate(sqlSessionFactory);}}

DB2DataSourceConfig.java

importorg.apache.ibatis.session.SqlSessionFactory;importorg.mybatis.spring.SqlSessionFactoryBean;importorg.mybatis.spring.SqlSessionTemplate;importorg.mybatis.spring.annotation.MapperScan;importorg.springframework.beans.factory.annotation.Qualifier;importorg.springframework.boot.context.properties.ConfigurationProperties;importorg.springframework.boot.jdbc.DataSourceBuilder;importorg.springframework.context.annotation.Bean;importorg.springframework.context.annotation.Configuration;importorg.springframework.core.io.support.PathMatchingResourcePatternResolver;importjavax.sql.DataSource;@Configuration@MapperScan(basePackages ="com.test.myproject.mapper.db2",sqlSessionFactoryRef ="db2SqlSessionFactory")publicclassDB2DataSourceConfig{@Bean("db2DataSource")@ConfigurationProperties(prefix ="spring.datasource.db2")publicDataSourcegetDb1DataSource(){returnDataSourceBuilder.create().build();}@Bean("db2SqlSessionFactory")publicSqlSessionFactorydb1SqlSessionFactory(@Qualifier("db2DataSource")DataSource dataSource)throwsException{SqlSessionFactoryBean bean =newSqlSessionFactoryBean();
        bean.setDataSource(dataSource);
        bean.setMapperLocations(newPathMatchingResourcePatternResolver().getResources("classpath*:mapper/*.xml"));return bean.getObject();}@Bean("db2SqlSessionTemplate")publicSqlSessionTemplatedb1SqlSessionTemplate(@Qualifier("db2SqlSessionFactory")SqlSessionFactory sqlSessionFactory){returnnewSqlSessionTemplate(sqlSessionFactory);}}
多数据源的配置就结束了,在对应的数据库配置的文件夹下实现持久化就可以了,和单数据源的操作无异。

本文转载自: https://blog.csdn.net/weixin_41309817/article/details/126928179
版权归原作者 喝一帘AD钙 所有, 如有侵权,请联系我们删除。

“springboot多数据源配置”的评论:

还没有评论