Skip to content

Commit 3ab91c8

Browse files
committed
Update README.md
1 parent a86186d commit 3ab91c8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,8 @@
7878

7979
[架构图](http://dangdangdotcom.github.io/sharding-jdbc/post/architecture/)
8080

81+
[Yaml文件和Spring命名空间配置](http://dangdangdotcom.github.io/sharding-jdbc/post/configuration/)
82+
8183
[基于暗示(Hint)的分片键值注册方法](http://dangdangdotcom.github.io/sharding-jdbc/post/hint_shardingvalue/)
8284

8385
[柔性事务(未合并至主干,目前在sharding-jdbc-transaction分支)](http://dangdangdotcom.github.io/sharding-jdbc/post/soft_transaction)
@@ -126,7 +128,7 @@
126128

127129
>详细的规则配置请参考[用户指南](http://dangdangdotcom.github.io/sharding-jdbc/post/user_guide/)
128130
129-
## 使用基于ShardingDataSource的JDBC接口
131+
## 使用原生JDBC接口
130132
通过规则配置对象获取`ShardingDataSource``ShardingDataSource`实现自`JDBC`的标准接口`DataSource`。然后可通过`DataSource`选择使用原生`JDBC`开发,或者使用`JPA`, `MyBatis``ORM`工具。
131133
`JDBC`原生实现为例:
132134
```java
@@ -147,7 +149,7 @@ try (
147149
}
148150
```
149151

150-
## 配置示例
152+
## 使用Spring命名空间配置
151153
```xml
152154

153155
<?xml version="1.0" encoding="UTF-8"?>
@@ -170,7 +172,6 @@ try (
170172
<property name="username" value="root"/>
171173
<property name="password" value=""/>
172174
</bean>
173-
174175
<bean id="dbtbl_1" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
175176
<property name="driverClassName" value="com.mysql.jdbc.Driver"/>
176177
<property name="url" value="jdbc:mysql://localhost:3306/dbtbl_1"/>
@@ -180,7 +181,6 @@ try (
180181

181182
<rdb:strategy id="orderTableStrategy" sharding-columns="order_id" algorithm-expression="t_order_${order_id % 4}"/>
182183
<rdb:strategy id="orderItemTableStrategy" sharding-columns="order_id" algorithm-expression="t_order_item_${order_id % 4}"/>
183-
184184
<rdb:data-source id="shardingDataSource">
185185
<rdb:sharding-rule data-sources="dbtbl_0,dbtbl_1">
186186
<rdb:table-rules>
@@ -191,4 +191,4 @@ try (
191191
</rdb:sharding-rule>
192192
</rdb:data-source>
193193
</beans>
194-
```
194+
```

0 commit comments

Comments
 (0)