spring.shardingsphere.sharding.default-database-strategy.inline.sharding-column=sex
spring.shardingsphere.sharding.default-database-strategy.inline.algorithm-expression=master$->{sex % 2}
如上,配置根据【性别】分库,如果我只有一个user表没问题,但是如果我还有其他表如order表,他没有sex,需要怎么配置,这个配置是版本4.0.0-RC1
使用4.1.1,根据官方文档的配置如下,下载不下包
<dependency>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>shardingsphere-jdbc-spring-boot-starter</artifactId>
<version>${shardingsphere.version}</version>
</dependency>