springboot整合mybatis,配置多数据源
- 导入依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- mybatis依赖 -->
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>2.3.1</version>
</dependency>
<!-- mysql驱动依赖 -->
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<version>8.3.0</version>
</dependency>
<!-- 简化开发 -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
2.编写配置文件
spring:
url: jdbc:mysql://127.0.0.1:3306/test
username: yourroot
password: yourpassword
driver-class-name: com.mysql.cj.jdbc.Driver
3.实体类
@Data
public class User2 {
private Long id;
private String username;
}
- Mapper接口
public interface User2Mapper {
@Select("select id,t_uName as username from user where id=#{id}")
User2 selectById(Long id);
}
注意
- 确保你mapper接口返回的字段和实体类的属性名称一致 如果不一致是要更名
- springboot的启动类要扫描mapper接口所在的包,并且如果有mapper.xml文件需要在yaml配置文件中配置
- 启动后直接访问接口即可。
配置多数据源
这里我用到了
https://gitee.com/baomidou/dynamic-datasource-spring-boot-starter
这是一个开源的,免费的数据源切换插件
- 导入依赖
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>dynamic-datasource-spring-boot-starter</artifactId>
<version>4.2.0</version>
</dependency>
- 配置数据源(我这里是只有mysql,如果配置其他到仓库里面去看即可)
spring:
datasource:
dynamic:
enabled: true #启用动态数据源,默认true
primary: master #设置默认的数据源或者数据源组,默认值即为master
strict: false #严格匹配数据源,默认false. true未匹配到指定数据源时抛异常,false使用默认数据源
grace-destroy: false #是否优雅关闭数据源,默认为false,设置为true时,关闭数据源时如果数据源中还存在活跃连接,至多等待10s后强制关闭
datasource:
master:
url: jdbc:mysql://xxxx:3306/xxx?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=UTC
username: root
password: 1234
driver-class-name: com.mysql.cj.jdbc.Driver # 3.2.0开始支持SPI可省略此配置 mysql8 要加上cj mysql5 就没有cj
slave_1:
url: jdbc:mysql://xxxx:3307/xxxx?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=UTC
username: root
password: 1234
driver-class-name: com.mysql.cj.jdbc.Driver
#......省略
#以上会配置一个默认库master,一个组slave下有两个子库slave_1,slave_2
- 通过DS(“你配置的数据源名称”) DS切换数据源
- 可以加在类上
- 方法上
就近原则,加在sever层或者是mapper层
@DS("slave_1") // 切换数据源
public interface User2Mapper {
@Select("select id,t_uName as username from user where id=#{id}")
User2 selectById(Long id);
}
controller层
@RestController
@RequestMapping("user")
public class Controller {
@Autowired
private UserMapper userMapper; // 这个没有mapper没有写DS 默认就是master源
@Autowired
private User2Mapper userMapper2;
@GetMapping("/hello")
public User hello(){
return userMapper.selectByPrimaryKey(1L);
}
@GetMapping("test2")
public User2 test2(){
return userMapper2.selectById(1L);
}
}
注意
- 如果你是用的docker部署,并且本地连的上,但是通过java代码连接不上,报错
- ssh 错误 什么时间错误等等,就要把后面那一串加上,官网默认是没有加的因为他是mysql5的.
jdbc:mysql://xxxx:3306/xxx?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=UTC
测试
user/test2 (这是3307端口的数据源)
user/hello (默认数据源)