文章详情

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

请输入下面的图形验证码

提交验证

短信预约提醒成功

Springboot怎么集成mybatis实现多数据源配置

2023-07-02 08:19

关注

本文小编为大家详细介绍“Springboot怎么集成mybatis实现多数据源配置”,内容详细,步骤清晰,细节处理妥当,希望这篇“Springboot怎么集成mybatis实现多数据源配置”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。

新建springboot工程,引入web、mysql、mybatis依赖

<dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-starter-web</artifactId>        </dependency>        <dependency>            <groupId>org.mybatis.spring.boot</groupId>            <artifactId>mybatis-spring-boot-starter</artifactId>            <version>2.2.2</version>        </dependency>        <dependency>            <groupId>mysql</groupId>            <artifactId>mysql-connector-java</artifactId>            <scope>runtime</scope>        </dependency>        <dependency>            <groupId>org.projectlombok</groupId>            <artifactId>lombok</artifactId>            <optional>true</optional>        </dependency>        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-starter-test</artifactId>            <scope>test</scope>        </dependency>        <dependency>            <groupId>junit</groupId>            <artifactId>junit</artifactId>            <version>4.12</version>            <scope>test</scope>        </dependency>

在application.properties中配置多数据源

spring.datasource.primary.jdbc-url=jdbc:mysql://localhost:3306/ds0
spring.datasource.primary.username=root
spring.datasource.primary.password=root
spring.datasource.primary.driver-class-name=com.mysql.cj.jdbc.Driver

spring.datasource.secondary.jdbc-url=jdbc:mysql://localhost:3306/ds1
spring.datasource.secondary.username=root
spring.datasource.secondary.password=root
spring.datasource.secondary.driver-class-name=com.mysql.cj.jdbc.Driver

多数据源配置与单个数据源配置不同点在于,spring.datasource之后多了一个数据源名称primary/secondary用来区分不同的数据源;

初始化数据源

新建一个配置类,用来加载多个数据源完成初始化。

@Configurationpublic class DataSourceConfiguration {    @Primary    @Bean    @ConfigurationProperties(prefix = "spring.datasource.primary")    public DataSource primaryDataSource() {        return DataSourceBuilder.create().build();    }    @Bean    @ConfigurationProperties(prefix = "spring.datasource.secondary")    public DataSource secondaryDataSource() {        return DataSourceBuilder.create().build();    }}

通过@ConfigurationProperties就可以知道这两个数据源分别加载了spring.datasource.primary.*和spring.datasource.secondary.*的配置。@Primary注解指定了主数据源,当不指定数据源时,就会使用该主数据源。

mybatis配置

@Configuration@MapperScan(        basePackages = "com*.primary",        sqlSessionFactoryRef = "sqlSessionFactoryPrimary",        sqlSessionTemplateRef = "sqlSessionTemplatePrimary")public class PrimaryConfig {    private DataSource primaryDataSource;    public PrimaryConfig(@Qualifier("primaryDataSource") DataSource primaryDataSource) {        this.primaryDataSource = primaryDataSource;    }    @Bean    public SqlSessionFactory sqlSessionFactoryPrimary() throws Exception {        SqlSessionFactoryBean bean = new SqlSessionFactoryBean();        bean.setDataSource(primaryDataSource);        return bean.getObject();    }    @Bean    public SqlSessionTemplate sqlSessionTemplatePrimary() throws Exception {        return new SqlSessionTemplate(sqlSessionFactoryPrimary());    }}
@Configuration@MapperScan(        basePackages = "com.*.secondary",        sqlSessionFactoryRef = "sqlSessionFactorySecondary",        sqlSessionTemplateRef = "sqlSessionTemplateSecondary")public class SecondaryConfig {    private DataSource secondaryDataSource;    public SecondaryConfig(@Qualifier("secondaryDataSource") DataSource secondaryDataSource) {        this.secondaryDataSource = secondaryDataSource;    }    @Bean    public SqlSessionFactory sqlSessionFactorySecondary() throws Exception {        SqlSessionFactoryBean bean = new SqlSessionFactoryBean();        bean.setDataSource(secondaryDataSource);        return bean.getObject();    }    @Bean    public SqlSessionTemplate sqlSessionTemplateSecondary() throws Exception {        return new SqlSessionTemplate(sqlSessionFactorySecondary());    }}

配置类上使用@MapperScan注解来指定当前数据源下定义的实体和mapper的包路径,还注入了sqlSessionFactory和sqlSessionTemplate,通过@Qualifier注解指定了对应的数据源,其名字对应在DataSourceConfiguration配置类中的数据源定义的函数名。

各个对数据源对应路径下的实体和mapper

@Data@NoArgsConstructorpublic class UserPrimary {    private Long id;    private String user_name;    private Integer age;    public UserPrimary(String name, Integer age) {        this.user_name = name;        this.age = age;    }}public interface UserMapperPrimary {    @Select("SELECT * FROM USER_0 WHERE USER_NAME = #{name}")    UserPrimary findByName(@Param("name") String name);    @Insert("INSERT INTO USER_0 (USER_NAME, AGE) VALUES(#{name}, #{age})")    int insert(@Param("name") String name, @Param("age") Integer age);    @Delete("DELETE FROM USER_0")    int deleteAll();}
@Data@NoArgsConstructorpublic class UserSecondary {    private Long id;    private String user_name;    private Integer age;    public UserSecondary(String name, Integer age) {        this.user_name = name;        this.age = age;    }}public interface UserMapperSecondary {    @Select("SELECT * FROM USER_1 WHERE USER_NAME = #{name}")    UserSecondary findByName(@Param("name") String name);    @Insert("INSERT INTO USER_1 (USER_NAME, AGE) VALUES(#{name}, #{age})")    int insert(@Param("name") String name, @Param("age") Integer age);    @Delete("DELETE FROM USER_1")    int deleteAll();}

测试

@Test    public void test() {        // 往Primary数据源插入一条数据        userMapperPrimary.insert("caocao", 20);        // 从Primary数据源查询刚才插入的数据,配置正确就可以查询到        UserPrimary userPrimary = userMapperPrimary.findByName("caocao");        Assert.assertEquals(20, userPrimary.getAge().intValue());        // 从Secondary数据源查询刚才插入的数据,配置正确应该是查询不到的        UserSecondary userSecondary = userMapperSecondary.findByName("caocao");        Assert.assertNull(userSecondary);        // 往Secondary数据源插入一条数据        userMapperSecondary.insert("sunquan", 21);        // 从Primary数据源查询刚才插入的数据,配置正确应该是查询不到的        userPrimary = userMapperPrimary.findByName("sunquan");        Assert.assertNull(userPrimary);        // 从Secondary数据源查询刚才插入的数据,配置正确就可以查询到        userSecondary = userMapperSecondary.findByName("sunquan");        Assert.assertEquals(21, userSecondary.getAge().intValue());    }

读到这里,这篇“Springboot怎么集成mybatis实现多数据源配置”文章已经介绍完毕,想要掌握这篇文章的知识点还需要大家自己动手实践使用过才能领会,如果想了解更多相关内容的文章,欢迎关注编程网行业资讯频道。

阅读原文内容投诉

免责声明:

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

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

软考中级精品资料免费领

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

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

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

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

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

    难度     220人已做
    查看

相关文章

发现更多好内容

猜你喜欢

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