sharding-jdbc 说明 :
1、分库分表不能中途更改,取模算法的id会出错
2、不支持特殊sql,包括去重,子sql,聚合等
3、查询会给所有表发查询sql, 带上分库, 分表的字段的查询只发一条,
4、查询数据要注意使用,尽量带上分库或分表字段来查询,避免多表查询sql过多
取模算法
假设2个表,test_0,test_1 , 分表字段为 uid
uid= 计算 添加数据至
1 1%2 = 1 test_1 (test_1 中包含 1 ,数据添加至 test_1 )
2 2%2 = 0 test_0
3 3%2 = 1 test_1
4 4%2 = 0 test_0
5 5%2 = 1 test_1
6 6%2 = 0 test_0
pom.xml (本篇文章所有依赖)
核心
io.shardingsphere
sharding-jdbc-spring-boot-starter
3.0.0.M3
其他必要依赖
druid-spring-boot-starter
1.1.10
org.springframework.boot
spring-boot-starter-data-jpa
mysql
mysql-connector-java
runtime
标签:jdbc,springboot,boot,查询,分库,sql,test From: https://blog.51cto.com/u_16265692/7742643