时间:2021-07-01 10:21:17 帮助过:191人阅读
<bean id="ds_112" class="com.alibaba.druid.pool.DruidDataSource" init-method="init"
destroy-method="close">
<property name="driverClassName" value="com.mysql.jdbc.Driver"/>
<property name="url" value="${jdbc.url_112}"></property>
<property name="username" value="${jdbc.username_112}"></property>
<property name="password" value="${jdbc.password_112}"></property>
<property name="maxActive" value="100"/>
<property name="initialSize" value="10"/>
<property name="maxWait" value="60000"/>
<property name="minIdle" value="5"/>
</bean>
<bean id="ds_113" class="com.alibaba.druid.pool.DruidDataSource" init-method="init"
destroy-method="close">
<property name="driverClassName" value="com.mysql.jdbc.Driver"/>
<property name="url" value="${jdbc.url_113}"></property>
<property name="username" value="${jdbc.username_113}"></property>
<property name="password" value="${jdbc.password_113}"></property>
<property name="maxActive" value="100"/>
<property name="initialSize" value="10"/>
<property name="maxWait" value="60000"/>
<property name="minIdle" value="5"/>
</bean>
<sharding:standard-strategy id="databaseShardingStrategy" sharding-column="business_id" precise-algorithm-class="com.boothsun.util.sharding.PreciseModuloDatabaseShardingAlgorithm" />
<sharding:data-source id="shardingDataSource">
<sharding:sharding-rule data-source-names="ds_112,ds_113">
<sharding:table-rules>
<sharding:table-rule logic-table="t_order" database-strategy-ref="databaseShardingStrategy" />
</sharding:table-rules>
</sharding:sharding-rule>
</sharding:data-source>
sharding-jdbc 相关标签含义 参见官方文档:配置手册
官方demo:github
/**
* 精确匹配
*/
public final class PreciseModuloDatabaseShardingAlgorithm implements PreciseShardingAlgorithm<Integer> {
private static final Map<Integer,String> dataSourceMap = new HashMap<>();
static {
dataSourceMap.put(112,"ds_112");
dataSourceMap.put(113,"ds_113");
}
@Override
public String doSharding(final Collection<String> availableTargetNames, final PreciseShardingValue<Integer> shardingValue) {
return dataSourceMap.get(shardingValue.getValue());
}
}
@Autowired
OrderMapper orderMapper ;
/**
* 测试插入
* @throws Exception
*/
@Test
public void insertSelective() throws Exception {
Order order = new Order();
order.setOrderId(1231);
order.setUserId(222);
order.setBusinessId(113);
Boolean result = orderMapper.insert(order) > 0;
System.out.println(result?"插入成功":"插入失败");
}
/**
* 测试 in 的查询操作
* @throws Exception
*/
@Test
public void selectByExample2() throws Exception {
List<Integer> values = new ArrayList<>();
values.add(112);
values.add(113);
OrderExample example = new OrderExample() ;
example.createCriteria().andBusinessIdIn(values);
List<Order> orderList = orderMapper.selectByExample(example) ;
System.out.println(JSONObject.toJSONString(orderList));
}
/**
* 测试between的查询操作
* @throws Exception
*/
@Test
public void selectByExample3() throws Exception {
OrderExample example = new OrderExample() ;
example.createCriteria().andBusinessIdBetween(112,113);
List<Order> orderList = orderMapper.selectByExample(example) ;
System.out.println(JSONObject.toJSONString(orderList));
}
sharding-JDBC 实现分库
标签:gui init use charset value row 操作 column logs