ShardingSphere 报错----Failed to configure a DataSource: ‘url‘ attribute is not specified
ShardingSphere 报错----Failed to configure a DataSource: ‘url‘ attribute is not specified
·
主要是版本号的问题,更改为 4.0.0-RC1就不会出现这个错误
更改完版本号可能可能还会出现下列错误
在 application.properties 增加一行配置就可以解决--------解决一个实体类无法对应两张表,做一个覆盖操作
spring.main.allow-bean-definition-overriding=true
以下是我的application.yml配置------------主要配置了单库水平分表操作
spring.shardingsphere.datasource.names=m1
#配置第一个数据源具体内容,包含连接池,驱动,地址,用户名和密码
spring.shardingsphere.datasource.m1.type=com.alibaba.druid.pool.DruidDataSource
spring.shardingsphere.datasource.m1.driver-class-name=com.mysql.cj.jdbc.Driver
spring.shardingsphere.datasource.m1.url=jdbc:mysql://localhost:3306/course_db?serverTimezone=GMT%2B8
spring.shardingsphere.datasource.m1.username=root
spring.shardingsphere.datasource.m1.password=root
spring.shardingsphere.sharding.tables.course.actual-data-nodes=m1.course_$->{1..2}
# 指定course表里面主键cid 生成策略 SNOWFLAKE
spring.shardingsphere.sharding.tables.course.key-generator.column=cid
spring.shardingsphere.sharding.tables.course.key-generator.type=SNOWFLAKE
# 指定表分片策略 约定cid值偶数添加到course_1表,如果cid是奇数添加到course_2表
spring.shardingsphere.sharding.tables.course.table-strategy.inline.sharding-column=cid
spring.shardingsphere.sharding.tables.course.table-strategy.inline.algorithm-expression=course_$->{cid % 2 + 1}
# 打开sql输出日志
spring.shardingsphere.props.sql.show=true
spring.main.allow-bean-definition-overriding=true
更多推荐
已为社区贡献1条内容
所有评论(0)