简介 #
DBplusEngine-Driver 提供 JDBC 驱动,开发者可以在 Spring Boot 中配置 ShardingSphereDriver
来使用 DBplusEngine-Driver。
使用步骤 #
引入 Maven 依赖 #
<dependency>
<groupId>com.sphere-ex</groupId>
<artifactId>shardingsphere-jdbc</artifactId>
<version>${shardingsphere.version}</version>
</dependency>
配置 Spring Boot #
# 配置 DataSource Driver
spring.datasource.driver-class-name=org.apache.shardingsphere.driver.ShardingSphereDriver
# 指定 YAML 配置文件
spring.datasource.url=jdbc:shardingsphere:classpath:xxx.yaml
使用数据源 #
直接使用该数据源;或者将 ShardingSphereDataSource 配置在 JPA、Hibernate、MyBatis 等 ORM 框架中配合使用。