Steven
Steven
Is there any way to fix it?
```properties spring.shardingsphere.datasource.names=ds0,ds1 spring.shardingsphere.datasource.ds0.type=com.zaxxer.hikari.HikariDataSource spring.shardingsphere.datasource.ds0.driver-class-name=oracle.jdbc.OracleDriver spring.shardingsphere.datasource.ds0.jdbc-url=jdbc:oracle:thin:@127.0.0.1:1521:orcl spring.shardingsphere.datasource.ds0.username=demo spring.shardingsphere.datasource.ds0.password=123456 spring.shardingsphere.datasource.ds1.type=com.zaxxer.hikari.HikariDataSource spring.shardingsphere.datasource.ds1.driver-class-name=oracle.jdbc.OracleDriver spring.shardingsphere.datasource.ds1.jdbc-url=jdbc:oracle:thin:@127.0.0.1:1522:orcl spring.shardingsphere.datasource.ds1.username=demo spring.shardingsphere.datasource.ds1.password=123456 spring.shardingsphere.rules.readwrite-splitting.data-sources.ds.type=Static spring.shardingsphere.rules.readwrite-splitting.data-sources.ds.props.write-data-source-name=ds0 spring.shardingsphere.rules.readwrite-splitting.data-sources.ds.props.read-data-source-names=ds1 spring.shardingsphere.rules.readwrite-splitting.data-sources.ds.load-balancer-name=round-robin spring.shardingsphere.rules.readwrite-splitting.load-balancers.round-robin.type=ROUND_ROBIN ```