一. 多数据源配置前的工作准备
一.一 准备两个数据库 springboot 和springboot2
springboot 数据库里面存放着 user 表
springboot2 数据库表里面存放着 dept 表
-- 在 springboot 数据库里面 创建 user 表 use springboot; CREATE TABLE `user` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(15) DEFAULT NULL, `sex` varchar(20) DEFAULT NULL, `age` int(6) DEFAULT NULL, `description` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8; -- 在 springboot2 数据库里面 创建 dept 表 use springboot2; CREATE TABLE `dept` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(200) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
一.二 准备对应的实体 User.java 和 Dept.java
User.java
@Data @NoArgsConstructor @AllArgsConstructor public class User { /** * @param id id编号 * @param name 姓名 * @param sex 性别 * @param age 年龄 * @param description 描述 */ private Integer id; private String name; private String sex; private Integer age; private String description; }
Dept.java
@Data public class Dept { /** * @param id id编号 * @param name 部门名称 */ private Integer id; private String name; }
一.三 Mybatis 的使用
关于 Mybatis 的使用,可以看老蝴蝶以前写的文章: SpringBoot整合MyBatis(七)
项目目录:
二. Mybatis 多数据源配置
二.一 pom.xml 添加依赖
<!--mysql的依赖 --> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> </dependency> <!--引入springboot与mybatis整合的依赖--> <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>2.1.4</version> </dependency> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid-spring-boot-starter</artifactId> <version>1.2.6</version> </dependency> <!-- 引入pagehelper分页插件 注意版本号要与 mybatis-plus 进行匹配到 --> <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper-spring-boot-starter</artifactId> <version>1.2.12</version> </dependency>
二.二 application.yml 配置多数据源
# 引入 数据库的相关配置 #spring: # datasource: # driver-class-name: com.mysql.cj.jdbc.Driver # url: jdbc:mysql://localhost:3306/springboot?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=UTF-8&useSSL=false&allowMultiQueries=true # username: root # password: abc123 # 配置成多数据源的形式 spring: datasource: # 配置第一个数据库 one: driver-class-name: com.mysql.cj.jdbc.Driver url: jdbc:mysql://localhost:3306/springboot?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=UTF-8&useSSL=false username: root password: abc123 type: com.alibaba.druid.pool.DruidDataSource # 配置第二个数据库 two: driver-class-name: com.mysql.cj.jdbc.Driver url: jdbc:mysql://localhost:3306/springboot2?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=UTF-8&useSSL=false username: root password: abc123 type: com.alibaba.druid.pool.DruidDataSource #整合mybatis时使用的 mybatis: # 包别名 需要去掉 # type-aliases-package: top.yueshushu.learn.pojo #映射文件路径 不能使用了 # mapper-locations: classpath:mybatis/**/*.xml configuration: #日志信息 log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
二.三 实体配置
在 pojo 包下, 分别创建两个包 one 和 two 包。
one 包下面放置所有使用 one 数据库实体的信息, two 包下面放置所有使用two数据库实体的信息
二.三.一 User.java 用户实体
@Data @NoArgsConstructor @AllArgsConstructor public class User implements Serializable { /** * @param id id编号 * @param name 姓名 * @param sex 性别 * @param age 年龄 * @param description 描述 */ private Integer id; private String name; private String sex; private Integer age; private String description; }
二.三.二 Dept.java 部门实体
@Data public class Dept implements Serializable { /** * @param id id编号 * @param name 部门名称 */ private Integer id; private String name; }
二.四 mapper 和其映射文件 配置
在 mapper 包下, 创建 one 包和 two包
one 包下面放置所有使用 one 数据库的信息, two 包下面放置所有使用two数据库的信息
二. 四.一 UserMapper 和其映射文件
二.四.一.一 UserMapper.java 接口
//@Mapper 不进行配置扫描 public interface UserMapper { // 其他的方法. 具体使用可以参考 Mybatis 章节 void addUser(@Param("user") User user); List<User> listUser(); }
二.四.一.二 UserMapper.xml 映射文件
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> <mapper namespace="top.yueshushu.learn.mapper.mapper1.UserMapper"> <insert id="addUser"> insert into user(name,sex,age,description) values( #{user.name},#{user.sex},#{user.age},#{user.description} ) </insert> <select id="listUser" resultType="top.yueshushu.learn.pojo.one.User"> select * from user </select> </mapper>