使用 Spring Boot Starter

引入 Maven 依赖

  1. <dependency>
  2. <groupId>org.apache.shardingsphere</groupId>
  3. <artifactId>shardingsphere-jdbc-core-spring-boot-starter</artifactId>
  4. <version>${shardingsphere.version}</version>
  5. </dependency>

规则配置

注:示例的数据库连接池为HikariCP,可根据业务场景更换为其他主流数据库连接池。

  1. # 配置真实数据源
  2. spring.shardingsphere.datasource.names=ds0,ds1
  3. # 配置第 1 个数据源
  4. spring.shardingsphere.datasource.ds0.type=com.zaxxer.hikari.HikariDataSource
  5. spring.shardingsphere.datasource.ds0.driver-class-name=com.mysql.jdbc.Driver
  6. spring.shardingsphere.datasource.ds0.jdbc-url=jdbc:mysql://localhost:3306/ds0
  7. spring.shardingsphere.datasource.ds0.username=root
  8. spring.shardingsphere.datasource.ds0.password=
  9. # 配置第 2 个数据源
  10. spring.shardingsphere.datasource.ds1.type=com.zaxxer.hikari.HikariDataSource
  11. spring.shardingsphere.datasource.ds1.driver-class-name=com.mysql.jdbc.Driver
  12. spring.shardingsphere.datasource.ds1.jdbc-url=jdbc:mysql://localhost:3306/ds1
  13. spring.shardingsphere.datasource.ds1.username=root
  14. spring.shardingsphere.datasource.ds1.password=
  15. # 配置 t_order 表规则
  16. spring.shardingsphere.rules.sharding.tables.t_order.actual-data-nodes=ds$->{0..1}.t_order$->{0..1}
  17. # 配置分库策略
  18. spring.shardingsphere.rules.sharding.tables.t_order.database-strategy.standard.sharding-column=user_id
  19. spring.shardingsphere.rules.sharding.tables.t_order.database-strategy.standard.sharding-algorithm-name=database_inline
  20. # 配置分表策略
  21. spring.shardingsphere.rules.sharding.tables.t_order.table-strategy.standard.sharding-column=order_id
  22. spring.shardingsphere.rules.sharding.tables.t_order.table-strategy.standard.sharding-algorithm-name=table_inline
  23. # 省略配置 t_order_item 表规则...
  24. # ...
  25. # 配置 分片算法
  26. spring.shardingsphere.rules.sharding.sharding-algorithms.database_inline.type=INLINE
  27. spring.shardingsphere.rules.sharding.sharding-algorithms.database_inline.props.algorithm-expression=ds_${user_id % 2}
  28. spring.shardingsphere.rules.sharding.sharding-algorithms.table_inline.type=INLINE
  29. spring.shardingsphere.rules.sharding.sharding-algorithms.table_inline.props.algorithm-expression=t_order_${order_id % 2}

使用 JNDI 数据源

如果计划使用 JNDI 配置数据库,在应用容器(如 Tomcat)中使用 ShardingSphere-JDBC 时, 可使用 spring.shardingsphere.datasource.${datasourceName}.jndiName 来代替数据源的一系列配置。如:

  1. # 配置真实数据源
  2. spring.shardingsphere.datasource.names=ds0,ds1
  3. # 配置第 1 个数据源
  4. spring.shardingsphere.datasource.ds0.jndi-name=java:comp/env/jdbc/ds0
  5. # 配置第 2 个数据源
  6. spring.shardingsphere.datasource.ds1.jndi-name=java:comp/env/jdbc/ds1
  7. # 省略规则配置...
  8. # ...

在 Spring 中使用 ShardingSphereDataSource

直接通过注入的方式即可使用 ShardingSphereDataSource;或者将 ShardingSphereDataSource 配置在JPA, MyBatis 等 ORM 框架中配合使用。

  1. @Resource
  2. private DataSource dataSource;