Spring Boot Starter 配置
简介
ShardingSphere-JDBC 提供官方的 Spring Boot Starter,使开发者可以非常便捷的整合 ShardingSphere-JDBC 和 Spring Boot。
数据源配置
spring.shardingsphere.schema.name= # JDBC 数据源别名,该参数为可选项,不配置则默认采用 logic_db 作为 schemaName。
spring.shardingsphere.datasource.names= # 数据源名称,多数据源以逗号分隔
spring.shardingsphere.datasource.<datasource-name>.type= # 数据库连接池类名称
spring.shardingsphere.datasource.<datasource-name>.driver-class-name= # 数据库驱动类名
spring.shardingsphere.datasource.<datasource-name>.jdbc-url= # 数据库 URL 连接
spring.shardingsphere.datasource.<datasource-name>.username= # 数据库用户名
spring.shardingsphere.datasource.<datasource-name>.password= # 数据库密码
spring.shardingsphere.datasource.<datasource-name>.xxx= # 数据库连接池的其它属性
规则配置
spring.shardingsphere.rules.<rule-type>.xxx= # 规则配置
# ... 具体的规则配置
更多详细配置请参见具体的规则配置部分。
属性配置
spring.shardingsphere.props.xxx.xxx= # 具体的属性配置
详情请参见属性配置。
当前内容版权归 ShardingSphere 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 ShardingSphere .