Overview
ShardingSphere provides a JDBC driver. To use ShardingSphere, developers can configure ShardingSphereDriver
in Spring.
Operation
Import Maven Dependency
<dependency>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>shardingsphere-jdbc</artifactId>
<version>${shardingsphere.version}</version>
</dependency>
Configure Spring Bean
Configuration Item Explanation
Name | Type | Description |
---|---|---|
driverClass | Attribute | Database Driver, need to use ShardingSphereDriver |
url | Attribute | YAML configuration file path |
Example
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="shardingDataSource" class="org.springframework.jdbc.datasource.SimpleDriverDataSource">
<property name="driverClass" value="org.apache.shardingsphere.driver.ShardingSphereDriver" />
<property name="url" value="jdbc:shardingsphere:classpath:xxx.yaml" />
</bean>
</beans>
Use Data Source
Same with Spring Boot.
当前内容版权归 ShardingSphere 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 ShardingSphere .