├── .github ├── GIT_TEMPLATE │ └── .git_commit_template.txt ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── feature-request.md │ └── question.md └── PULL_REQUEST_TEMPLATE ├── .gitignore ├── LICENSE ├── README.md ├── docker ├── docker-compose.md ├── sharding-jdbc │ └── sharding │ │ └── docker-compose.yml ├── sharding-proxy │ ├── orchestration │ │ ├── docker-compose.yml │ │ ├── run.sh │ │ └── stop.sh │ └── sharding │ │ ├── conf │ │ ├── config-sharding.yaml │ │ └── server.yaml │ │ └── docker-compose.yml └── tools │ └── wait-for-it.sh ├── example-core ├── config-utility │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── apache │ │ │ └── shardingsphere │ │ │ └── example │ │ │ ├── algorithm │ │ │ ├── PreciseModuloShardingDatabaseAlgorithm.java │ │ │ ├── PreciseModuloShardingTableAlgorithm.java │ │ │ ├── RangeModuloShardingDatabaseAlgorithm.java │ │ │ └── RangeModuloShardingTableAlgorithm.java │ │ │ ├── config │ │ │ └── ExampleConfiguration.java │ │ │ ├── fixture │ │ │ └── TestQueryAssistedShardingEncryptor.java │ │ │ └── type │ │ │ ├── RegistryCenterType.java │ │ │ └── ShardingType.java │ │ └── resources │ │ └── META-INF │ │ └── services │ │ └── org.apache.shardingsphere.spi.encrypt.ShardingEncryptor ├── example-api │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── apache │ │ └── shardingsphere │ │ └── example │ │ └── core │ │ └── api │ │ ├── DataSourceUtil.java │ │ ├── ExampleExecuteTemplate.java │ │ ├── entity │ │ ├── Address.java │ │ ├── Order.java │ │ ├── OrderItem.java │ │ └── User.java │ │ ├── repository │ │ ├── AddressRepository.java │ │ ├── CommonRepository.java │ │ ├── OrderItemRepository.java │ │ ├── OrderRepository.java │ │ └── UserRepository.java │ │ └── service │ │ └── ExampleService.java ├── example-raw-jdbc │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── apache │ │ └── shardingsphere │ │ └── example │ │ └── core │ │ └── jdbc │ │ ├── repository │ │ ├── AddressRepositoryImpl.java │ │ ├── OrderItemRepositoryImpl.java │ │ ├── OrderRepositoryImpl.java │ │ ├── RangeOrderItemRepositoryImpl.java │ │ ├── RangeOrderRepositoryImpl.java │ │ └── UserRepositoryImpl.java │ │ └── service │ │ ├── OrderServiceImpl.java │ │ └── UserServiceImpl.java ├── example-spring-jpa │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── apache │ │ └── shardingsphere │ │ └── example │ │ └── core │ │ └── jpa │ │ ├── entity │ │ ├── AddressEntity.java │ │ ├── OrderEntity.java │ │ ├── OrderItemEntity.java │ │ └── UserEntity.java │ │ ├── repository │ │ ├── AddressRepositoryImpl.java │ │ ├── OrderItemRepositoryImpl.java │ │ ├── OrderRepositoryImpl.java │ │ └── UserRepositoryImpl.java │ │ └── service │ │ ├── OrderServiceImpl.java │ │ └── UserServiceImpl.java ├── example-spring-mybatis │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── apache │ │ │ └── shardingsphere │ │ │ └── example │ │ │ └── core │ │ │ └── mybatis │ │ │ ├── repository │ │ │ ├── MybatisAddressRepository.java │ │ │ ├── MybatisOrderItemRepository.java │ │ │ ├── MybatisOrderRepository.java │ │ │ └── MybatisUserRepository.java │ │ │ └── service │ │ │ ├── OrderServiceImpl.java │ │ │ └── UserServiceImpl.java │ │ └── resources │ │ └── META-INF │ │ └── mappers │ │ ├── AddressMapper.xml │ │ ├── OrderItemMapper.xml │ │ ├── OrderMapper.xml │ │ └── UserMapper.xml └── pom.xml ├── pom.xml ├── sharding-jdbc-example ├── orchestration-example │ ├── orchestration-raw-jdbc-example │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── shardingsphere │ │ │ │ └── example │ │ │ │ └── orchestration │ │ │ │ └── raw │ │ │ │ └── jdbc │ │ │ │ ├── JavaConfigurationExampleMain.java │ │ │ │ ├── YamlConfigurationExampleMain.java │ │ │ │ └── config │ │ │ │ ├── RegistryCenterConfigurationUtil.java │ │ │ │ ├── cloud │ │ │ │ ├── CloudEncryptConfiguration.java │ │ │ │ ├── CloudMasterSlaveConfiguration.java │ │ │ │ └── CloudShardingDatabasesAndTablesConfiguration.java │ │ │ │ └── local │ │ │ │ ├── LocalEncryptConfiguration.java │ │ │ │ ├── LocalMasterSlaveConfiguration.java │ │ │ │ ├── LocalShardingDatabasesAndTablesConfiguration.java │ │ │ │ ├── LocalShardingDatabasesConfiguration.java │ │ │ │ ├── LocalShardingMasterSlaveConfiguration.java │ │ │ │ └── LocalShardingTablesConfiguration.java │ │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── nacos │ │ │ │ ├── cloud │ │ │ │ │ ├── encrypt.yaml │ │ │ │ │ ├── master-slave.yaml │ │ │ │ │ └── sharding-databases-tables.yaml │ │ │ │ └── local │ │ │ │ │ ├── encrypt.yaml │ │ │ │ │ ├── master-slave.yaml │ │ │ │ │ └── sharding-databases-tables.yaml │ │ │ └── zookeeper │ │ │ │ ├── cloud │ │ │ │ ├── encrypt.yaml │ │ │ │ ├── master-slave.yaml │ │ │ │ └── sharding-databases-tables.yaml │ │ │ │ └── local │ │ │ │ ├── encrypt.yaml │ │ │ │ ├── master-slave.yaml │ │ │ │ └── sharding-databases-tables.yaml │ │ │ └── logback.xml │ ├── orchestration-spring-boot-example │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── shardingsphere │ │ │ │ └── example │ │ │ │ └── orchestration │ │ │ │ └── spring │ │ │ │ └── boot │ │ │ │ └── ExampleMain.java │ │ │ └── resources │ │ │ ├── application-cloud-nacos-encrypt.properties │ │ │ ├── application-cloud-nacos-master-slave.properties │ │ │ ├── application-cloud-nacos-sharding-databases-tables.properties │ │ │ ├── application-cloud-zookeeper-encrypt.properties │ │ │ ├── application-cloud-zookeeper-master-slave.properties │ │ │ ├── application-cloud-zookeeper-sharding-databases-tables.properties │ │ │ ├── application-local-nacos-encrypt.properties │ │ │ ├── application-local-nacos-master-slave.properties │ │ │ ├── application-local-nacos-sharding-databases-tables.properties │ │ │ ├── application-local-zookeeper-encrypt.properties │ │ │ ├── application-local-zookeeper-master-slave.properties │ │ │ ├── application-local-zookeeper-sharding-databases-tables.properties │ │ │ └── application.properties │ ├── orchestration-spring-namespace-example │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── shardingsphere │ │ │ │ └── example │ │ │ │ └── orchestration │ │ │ │ └── spring │ │ │ │ └── namespace │ │ │ │ └── ExampleMain.java │ │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── nacos │ │ │ │ ├── cloud │ │ │ │ │ ├── application-encrypt.xml │ │ │ │ │ ├── application-master-slave.xml │ │ │ │ │ └── application-sharding-databases-tables.xml │ │ │ │ ├── local │ │ │ │ │ ├── application-encrypt.xml │ │ │ │ │ ├── application-master-slave.xml │ │ │ │ │ └── application-sharding-databases-tables.xml │ │ │ │ └── registry-center.xml │ │ │ └── zookeeper │ │ │ │ ├── cloud │ │ │ │ ├── application-encrypt.xml │ │ │ │ ├── application-master-slave.xml │ │ │ │ └── application-sharding-databases-tables.xml │ │ │ │ ├── local │ │ │ │ ├── application-encrypt.xml │ │ │ │ ├── application-master-slave.xml │ │ │ │ └── application-sharding-databases-tables.xml │ │ │ │ └── registry-center.xml │ │ │ └── logback.xml │ └── pom.xml ├── other-feature-example │ ├── encrypt-example │ │ ├── encrypt-raw-jdbc-example │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── apache │ │ │ │ │ └── shardingsphere │ │ │ │ │ └── example │ │ │ │ │ └── encrypt │ │ │ │ │ └── table │ │ │ │ │ └── raw │ │ │ │ │ └── jdbc │ │ │ │ │ ├── JavaConfigurationExampleMain.java │ │ │ │ │ ├── YamlConfigurationExampleMain.java │ │ │ │ │ └── config │ │ │ │ │ └── EncryptDatabasesConfiguration.java │ │ │ │ └── resources │ │ │ │ ├── META-INF │ │ │ │ └── encrypt-databases.yaml │ │ │ │ └── logback.xml │ │ ├── encrypt-spring-boot-example │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── apache │ │ │ │ │ └── shardingsphere │ │ │ │ │ └── example │ │ │ │ │ └── encrypt │ │ │ │ │ └── table │ │ │ │ │ └── spring │ │ │ │ │ └── boot │ │ │ │ │ └── ExampleMain.java │ │ │ │ └── resources │ │ │ │ ├── application-encrypt-databases.properties │ │ │ │ ├── application.properties │ │ │ │ └── logback.xml │ │ ├── encrypt-spring-namespace-example │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── apache │ │ │ │ │ └── shardingsphere │ │ │ │ │ └── example │ │ │ │ │ └── encrypt │ │ │ │ │ └── table │ │ │ │ │ └── spring │ │ │ │ │ └── namespace │ │ │ │ │ └── ExampleMain.java │ │ │ │ └── resources │ │ │ │ ├── META-INF │ │ │ │ └── application-encrypt-databases.xml │ │ │ │ └── logback.xml │ │ └── pom.xml │ ├── hint-example │ │ ├── hint-raw-jdbc-example │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── apache │ │ │ │ │ └── shardingsphere │ │ │ │ │ └── example │ │ │ │ │ └── hint │ │ │ │ │ └── raw │ │ │ │ │ └── jdbc │ │ │ │ │ ├── ExampleMain.java │ │ │ │ │ ├── HintType.java │ │ │ │ │ └── ModuloHintShardingAlgorithm.java │ │ │ │ └── resources │ │ │ │ ├── META-INF │ │ │ │ ├── hint-databases-only.yaml │ │ │ │ ├── hint-databases-tables.yaml │ │ │ │ └── hint-master-only.yaml │ │ │ │ └── logback.xml │ │ └── pom.xml │ └── pom.xml ├── pom.xml ├── sharding-example │ ├── pom.xml │ ├── sharding-raw-jdbc-example │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── shardingsphere │ │ │ │ └── example │ │ │ │ └── sharding │ │ │ │ └── raw │ │ │ │ └── jdbc │ │ │ │ ├── JavaConfigurationExampleMain.java │ │ │ │ ├── JavaRangeConfigurationExampleMain.java │ │ │ │ ├── YamlConfigurationExampleMain.java │ │ │ │ ├── YamlRangeConfigurationExampleMain.java │ │ │ │ ├── config │ │ │ │ ├── MasterSlaveConfiguration.java │ │ │ │ ├── ShardingDatabasesAndTablesConfigurationPrecise.java │ │ │ │ ├── ShardingDatabasesAndTablesConfigurationRange.java │ │ │ │ ├── ShardingDatabasesConfigurationPrecise.java │ │ │ │ ├── ShardingDatabasesConfigurationRange.java │ │ │ │ ├── ShardingMasterSlaveConfigurationPrecise.java │ │ │ │ ├── ShardingMasterSlaveConfigurationRange.java │ │ │ │ ├── ShardingTablesConfigurationPrecise.java │ │ │ │ └── ShardingTablesConfigurationRange.java │ │ │ │ └── factory │ │ │ │ ├── DataSourceFactory.java │ │ │ │ ├── RangeDataSourceFactory.java │ │ │ │ ├── YamlDataSourceFactory.java │ │ │ │ └── YamlRangeDataSourceFactory.java │ │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── master-slave.yaml │ │ │ ├── sharding-databases-range.yaml │ │ │ ├── sharding-databases-tables-range.yaml │ │ │ ├── sharding-databases-tables.yaml │ │ │ ├── sharding-databases.yaml │ │ │ ├── sharding-master-slave-range.yaml │ │ │ ├── sharding-master-slave.yaml │ │ │ ├── sharding-tables-range.yaml │ │ │ └── sharding-tables.yaml │ │ │ └── logback.xml │ ├── sharding-spring-boot-jpa-example │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── shardingsphere │ │ │ │ └── example │ │ │ │ └── sharding │ │ │ │ └── spring │ │ │ │ └── boot │ │ │ │ └── jpa │ │ │ │ └── ExampleMain.java │ │ │ └── resources │ │ │ ├── application-master-slave.properties │ │ │ ├── application-sharding-databases-tables.properties │ │ │ ├── application-sharding-databases.properties │ │ │ ├── application-sharding-master-slave.properties │ │ │ ├── application-sharding-tables.properties │ │ │ ├── application.properties │ │ │ └── logback.xml │ ├── sharding-spring-boot-mybatis-example │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── shardingsphere │ │ │ │ └── example │ │ │ │ └── sharding │ │ │ │ └── spring │ │ │ │ └── boot │ │ │ │ └── mybatis │ │ │ │ └── ExampleMain.java │ │ │ └── resources │ │ │ ├── META-INF │ │ │ └── mybatis-config.xml │ │ │ ├── application-master-slave.properties │ │ │ ├── application-sharding-databases-tables.properties │ │ │ ├── application-sharding-databases.properties │ │ │ ├── application-sharding-master-slave.properties │ │ │ ├── application-sharding-tables.properties │ │ │ ├── application.properties │ │ │ └── logback.xml │ ├── sharding-spring-namespace-jpa-example │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── shardingsphere │ │ │ │ └── example │ │ │ │ └── sharding │ │ │ │ └── spring │ │ │ │ └── namespace │ │ │ │ └── jpa │ │ │ │ └── ExampleMain.java │ │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── application-master-slave.xml │ │ │ ├── application-sharding-databases-tables.xml │ │ │ ├── application-sharding-databases.xml │ │ │ ├── application-sharding-master-slave.xml │ │ │ └── application-sharding-tables.xml │ │ │ └── logback.xml │ └── sharding-spring-namespace-mybatis-example │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── apache │ │ │ └── shardingsphere │ │ │ └── example │ │ │ └── sharding │ │ │ └── spring │ │ │ └── namespace │ │ │ └── mybatis │ │ │ └── ExampleMain.java │ │ └── resources │ │ ├── META-INF │ │ ├── application-master-slave.xml │ │ ├── application-sharding-databases-tables.xml │ │ ├── application-sharding-databases.xml │ │ ├── application-sharding-master-slave.xml │ │ └── application-sharding-tables.xml │ │ └── logback.xml └── transaction-example │ ├── pom.xml │ ├── transaction-2pc-xa-raw-jdbc-example │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── apache │ │ │ └── shardingsphere │ │ │ └── example │ │ │ └── transaction │ │ │ └── xa │ │ │ └── raw │ │ │ └── jdbc │ │ │ └── ExampleMain.java │ │ └── resources │ │ ├── META-INF │ │ ├── master-slave.yaml │ │ ├── sharding-databases-tables-postgresql.yaml │ │ └── sharding-databases-tables.yaml │ │ └── logback.xml │ └── transaction-base-seata-raw-jdbc-example │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── org │ │ └── apache │ │ └── shardingsphere │ │ └── example │ │ └── transaction │ │ └── base │ │ └── seata │ │ └── raw │ │ └── jdbc │ │ └── ExampleMain.java │ └── resources │ ├── META-INF │ └── sharding-databases-tables.yaml │ ├── file.conf │ ├── logback.xml │ ├── registry.conf │ ├── seata.conf │ └── sql │ └── undo_log.sql ├── sharding-proxy-example ├── pom.xml ├── sharding-proxy-boot-mybatis-example │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── apache │ │ │ └── shardingsphere │ │ │ └── example │ │ │ └── proxy │ │ │ └── spring │ │ │ └── boot │ │ │ └── mybatis │ │ │ └── SpringBootStarterExample.java │ │ └── resources │ │ ├── META-INF │ │ └── mybatis-config.xml │ │ ├── application.properties │ │ ├── conf │ │ ├── config-master_slave.yaml │ │ ├── config-sharding.yaml │ │ └── server.yaml │ │ └── logback.xml └── sharding-proxy-hint-example │ ├── pom.xml │ └── src │ └── main │ ├── java │ └── org │ │ └── apache │ │ └── shardingsphere │ │ └── example │ │ └── proxy │ │ └── hint │ │ ├── ExampleMain.java │ │ ├── HintType.java │ │ ├── ModuloHintShardingAlgorithm.java │ │ ├── config │ │ └── DatasourceConfig.java │ │ └── factory │ │ └── YamlDataSourceFactory.java │ └── resources │ ├── META-INF │ ├── hint-databases-only.yaml │ ├── hint-databases-tables.yaml │ └── hint-master-only.yaml │ ├── conf │ ├── config-databases-only.yaml │ ├── config-databases-tables.yaml │ ├── config-master-only.yaml │ └── server.yaml │ └── logback.xml └── src └── resources ├── copyright.txt ├── manual_schema.sql └── sharding_checks.xml /.github/GIT_TEMPLATE/.git_commit_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/.github/GIT_TEMPLATE/.git_commit_template.txt -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/.github/PULL_REQUEST_TEMPLATE -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/README.md -------------------------------------------------------------------------------- /docker/docker-compose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/docker/docker-compose.md -------------------------------------------------------------------------------- /docker/sharding-jdbc/sharding/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/docker/sharding-jdbc/sharding/docker-compose.yml -------------------------------------------------------------------------------- /docker/sharding-proxy/orchestration/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/docker/sharding-proxy/orchestration/docker-compose.yml -------------------------------------------------------------------------------- /docker/sharding-proxy/orchestration/run.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | docker-compose up -d 4 | -------------------------------------------------------------------------------- /docker/sharding-proxy/orchestration/stop.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | docker-compose down 4 | -------------------------------------------------------------------------------- /docker/sharding-proxy/sharding/conf/config-sharding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/docker/sharding-proxy/sharding/conf/config-sharding.yaml -------------------------------------------------------------------------------- /docker/sharding-proxy/sharding/conf/server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/docker/sharding-proxy/sharding/conf/server.yaml -------------------------------------------------------------------------------- /docker/sharding-proxy/sharding/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/docker/sharding-proxy/sharding/docker-compose.yml -------------------------------------------------------------------------------- /docker/tools/wait-for-it.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/docker/tools/wait-for-it.sh -------------------------------------------------------------------------------- /example-core/config-utility/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/config-utility/pom.xml -------------------------------------------------------------------------------- /example-core/config-utility/src/main/java/org/apache/shardingsphere/example/algorithm/PreciseModuloShardingDatabaseAlgorithm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/config-utility/src/main/java/org/apache/shardingsphere/example/algorithm/PreciseModuloShardingDatabaseAlgorithm.java -------------------------------------------------------------------------------- /example-core/config-utility/src/main/java/org/apache/shardingsphere/example/algorithm/PreciseModuloShardingTableAlgorithm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/config-utility/src/main/java/org/apache/shardingsphere/example/algorithm/PreciseModuloShardingTableAlgorithm.java -------------------------------------------------------------------------------- /example-core/config-utility/src/main/java/org/apache/shardingsphere/example/algorithm/RangeModuloShardingDatabaseAlgorithm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/config-utility/src/main/java/org/apache/shardingsphere/example/algorithm/RangeModuloShardingDatabaseAlgorithm.java -------------------------------------------------------------------------------- /example-core/config-utility/src/main/java/org/apache/shardingsphere/example/algorithm/RangeModuloShardingTableAlgorithm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/config-utility/src/main/java/org/apache/shardingsphere/example/algorithm/RangeModuloShardingTableAlgorithm.java -------------------------------------------------------------------------------- /example-core/config-utility/src/main/java/org/apache/shardingsphere/example/config/ExampleConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/config-utility/src/main/java/org/apache/shardingsphere/example/config/ExampleConfiguration.java -------------------------------------------------------------------------------- /example-core/config-utility/src/main/java/org/apache/shardingsphere/example/fixture/TestQueryAssistedShardingEncryptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/config-utility/src/main/java/org/apache/shardingsphere/example/fixture/TestQueryAssistedShardingEncryptor.java -------------------------------------------------------------------------------- /example-core/config-utility/src/main/java/org/apache/shardingsphere/example/type/RegistryCenterType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/config-utility/src/main/java/org/apache/shardingsphere/example/type/RegistryCenterType.java -------------------------------------------------------------------------------- /example-core/config-utility/src/main/java/org/apache/shardingsphere/example/type/ShardingType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/config-utility/src/main/java/org/apache/shardingsphere/example/type/ShardingType.java -------------------------------------------------------------------------------- /example-core/config-utility/src/main/resources/META-INF/services/org.apache.shardingsphere.spi.encrypt.ShardingEncryptor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/config-utility/src/main/resources/META-INF/services/org.apache.shardingsphere.spi.encrypt.ShardingEncryptor -------------------------------------------------------------------------------- /example-core/example-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-api/pom.xml -------------------------------------------------------------------------------- /example-core/example-api/src/main/java/org/apache/shardingsphere/example/core/api/DataSourceUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-api/src/main/java/org/apache/shardingsphere/example/core/api/DataSourceUtil.java -------------------------------------------------------------------------------- /example-core/example-api/src/main/java/org/apache/shardingsphere/example/core/api/ExampleExecuteTemplate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-api/src/main/java/org/apache/shardingsphere/example/core/api/ExampleExecuteTemplate.java -------------------------------------------------------------------------------- /example-core/example-api/src/main/java/org/apache/shardingsphere/example/core/api/entity/Address.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-api/src/main/java/org/apache/shardingsphere/example/core/api/entity/Address.java -------------------------------------------------------------------------------- /example-core/example-api/src/main/java/org/apache/shardingsphere/example/core/api/entity/Order.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-api/src/main/java/org/apache/shardingsphere/example/core/api/entity/Order.java -------------------------------------------------------------------------------- /example-core/example-api/src/main/java/org/apache/shardingsphere/example/core/api/entity/OrderItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-api/src/main/java/org/apache/shardingsphere/example/core/api/entity/OrderItem.java -------------------------------------------------------------------------------- /example-core/example-api/src/main/java/org/apache/shardingsphere/example/core/api/entity/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-api/src/main/java/org/apache/shardingsphere/example/core/api/entity/User.java -------------------------------------------------------------------------------- /example-core/example-api/src/main/java/org/apache/shardingsphere/example/core/api/repository/AddressRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-api/src/main/java/org/apache/shardingsphere/example/core/api/repository/AddressRepository.java -------------------------------------------------------------------------------- /example-core/example-api/src/main/java/org/apache/shardingsphere/example/core/api/repository/CommonRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-api/src/main/java/org/apache/shardingsphere/example/core/api/repository/CommonRepository.java -------------------------------------------------------------------------------- /example-core/example-api/src/main/java/org/apache/shardingsphere/example/core/api/repository/OrderItemRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-api/src/main/java/org/apache/shardingsphere/example/core/api/repository/OrderItemRepository.java -------------------------------------------------------------------------------- /example-core/example-api/src/main/java/org/apache/shardingsphere/example/core/api/repository/OrderRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-api/src/main/java/org/apache/shardingsphere/example/core/api/repository/OrderRepository.java -------------------------------------------------------------------------------- /example-core/example-api/src/main/java/org/apache/shardingsphere/example/core/api/repository/UserRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-api/src/main/java/org/apache/shardingsphere/example/core/api/repository/UserRepository.java -------------------------------------------------------------------------------- /example-core/example-api/src/main/java/org/apache/shardingsphere/example/core/api/service/ExampleService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-api/src/main/java/org/apache/shardingsphere/example/core/api/service/ExampleService.java -------------------------------------------------------------------------------- /example-core/example-raw-jdbc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-raw-jdbc/pom.xml -------------------------------------------------------------------------------- /example-core/example-raw-jdbc/src/main/java/org/apache/shardingsphere/example/core/jdbc/repository/AddressRepositoryImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-raw-jdbc/src/main/java/org/apache/shardingsphere/example/core/jdbc/repository/AddressRepositoryImpl.java -------------------------------------------------------------------------------- /example-core/example-raw-jdbc/src/main/java/org/apache/shardingsphere/example/core/jdbc/repository/OrderItemRepositoryImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-raw-jdbc/src/main/java/org/apache/shardingsphere/example/core/jdbc/repository/OrderItemRepositoryImpl.java -------------------------------------------------------------------------------- /example-core/example-raw-jdbc/src/main/java/org/apache/shardingsphere/example/core/jdbc/repository/OrderRepositoryImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-raw-jdbc/src/main/java/org/apache/shardingsphere/example/core/jdbc/repository/OrderRepositoryImpl.java -------------------------------------------------------------------------------- /example-core/example-raw-jdbc/src/main/java/org/apache/shardingsphere/example/core/jdbc/repository/RangeOrderItemRepositoryImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-raw-jdbc/src/main/java/org/apache/shardingsphere/example/core/jdbc/repository/RangeOrderItemRepositoryImpl.java -------------------------------------------------------------------------------- /example-core/example-raw-jdbc/src/main/java/org/apache/shardingsphere/example/core/jdbc/repository/RangeOrderRepositoryImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-raw-jdbc/src/main/java/org/apache/shardingsphere/example/core/jdbc/repository/RangeOrderRepositoryImpl.java -------------------------------------------------------------------------------- /example-core/example-raw-jdbc/src/main/java/org/apache/shardingsphere/example/core/jdbc/repository/UserRepositoryImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-raw-jdbc/src/main/java/org/apache/shardingsphere/example/core/jdbc/repository/UserRepositoryImpl.java -------------------------------------------------------------------------------- /example-core/example-raw-jdbc/src/main/java/org/apache/shardingsphere/example/core/jdbc/service/OrderServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-raw-jdbc/src/main/java/org/apache/shardingsphere/example/core/jdbc/service/OrderServiceImpl.java -------------------------------------------------------------------------------- /example-core/example-raw-jdbc/src/main/java/org/apache/shardingsphere/example/core/jdbc/service/UserServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-raw-jdbc/src/main/java/org/apache/shardingsphere/example/core/jdbc/service/UserServiceImpl.java -------------------------------------------------------------------------------- /example-core/example-spring-jpa/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-spring-jpa/pom.xml -------------------------------------------------------------------------------- /example-core/example-spring-jpa/src/main/java/org/apache/shardingsphere/example/core/jpa/entity/AddressEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-spring-jpa/src/main/java/org/apache/shardingsphere/example/core/jpa/entity/AddressEntity.java -------------------------------------------------------------------------------- /example-core/example-spring-jpa/src/main/java/org/apache/shardingsphere/example/core/jpa/entity/OrderEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-spring-jpa/src/main/java/org/apache/shardingsphere/example/core/jpa/entity/OrderEntity.java -------------------------------------------------------------------------------- /example-core/example-spring-jpa/src/main/java/org/apache/shardingsphere/example/core/jpa/entity/OrderItemEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-spring-jpa/src/main/java/org/apache/shardingsphere/example/core/jpa/entity/OrderItemEntity.java -------------------------------------------------------------------------------- /example-core/example-spring-jpa/src/main/java/org/apache/shardingsphere/example/core/jpa/entity/UserEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-spring-jpa/src/main/java/org/apache/shardingsphere/example/core/jpa/entity/UserEntity.java -------------------------------------------------------------------------------- /example-core/example-spring-jpa/src/main/java/org/apache/shardingsphere/example/core/jpa/repository/AddressRepositoryImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-spring-jpa/src/main/java/org/apache/shardingsphere/example/core/jpa/repository/AddressRepositoryImpl.java -------------------------------------------------------------------------------- /example-core/example-spring-jpa/src/main/java/org/apache/shardingsphere/example/core/jpa/repository/OrderItemRepositoryImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-spring-jpa/src/main/java/org/apache/shardingsphere/example/core/jpa/repository/OrderItemRepositoryImpl.java -------------------------------------------------------------------------------- /example-core/example-spring-jpa/src/main/java/org/apache/shardingsphere/example/core/jpa/repository/OrderRepositoryImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-spring-jpa/src/main/java/org/apache/shardingsphere/example/core/jpa/repository/OrderRepositoryImpl.java -------------------------------------------------------------------------------- /example-core/example-spring-jpa/src/main/java/org/apache/shardingsphere/example/core/jpa/repository/UserRepositoryImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-spring-jpa/src/main/java/org/apache/shardingsphere/example/core/jpa/repository/UserRepositoryImpl.java -------------------------------------------------------------------------------- /example-core/example-spring-jpa/src/main/java/org/apache/shardingsphere/example/core/jpa/service/OrderServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-spring-jpa/src/main/java/org/apache/shardingsphere/example/core/jpa/service/OrderServiceImpl.java -------------------------------------------------------------------------------- /example-core/example-spring-jpa/src/main/java/org/apache/shardingsphere/example/core/jpa/service/UserServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-spring-jpa/src/main/java/org/apache/shardingsphere/example/core/jpa/service/UserServiceImpl.java -------------------------------------------------------------------------------- /example-core/example-spring-mybatis/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-spring-mybatis/pom.xml -------------------------------------------------------------------------------- /example-core/example-spring-mybatis/src/main/java/org/apache/shardingsphere/example/core/mybatis/repository/MybatisAddressRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-spring-mybatis/src/main/java/org/apache/shardingsphere/example/core/mybatis/repository/MybatisAddressRepository.java -------------------------------------------------------------------------------- /example-core/example-spring-mybatis/src/main/java/org/apache/shardingsphere/example/core/mybatis/repository/MybatisOrderItemRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-spring-mybatis/src/main/java/org/apache/shardingsphere/example/core/mybatis/repository/MybatisOrderItemRepository.java -------------------------------------------------------------------------------- /example-core/example-spring-mybatis/src/main/java/org/apache/shardingsphere/example/core/mybatis/repository/MybatisOrderRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-spring-mybatis/src/main/java/org/apache/shardingsphere/example/core/mybatis/repository/MybatisOrderRepository.java -------------------------------------------------------------------------------- /example-core/example-spring-mybatis/src/main/java/org/apache/shardingsphere/example/core/mybatis/repository/MybatisUserRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-spring-mybatis/src/main/java/org/apache/shardingsphere/example/core/mybatis/repository/MybatisUserRepository.java -------------------------------------------------------------------------------- /example-core/example-spring-mybatis/src/main/java/org/apache/shardingsphere/example/core/mybatis/service/OrderServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-spring-mybatis/src/main/java/org/apache/shardingsphere/example/core/mybatis/service/OrderServiceImpl.java -------------------------------------------------------------------------------- /example-core/example-spring-mybatis/src/main/java/org/apache/shardingsphere/example/core/mybatis/service/UserServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-spring-mybatis/src/main/java/org/apache/shardingsphere/example/core/mybatis/service/UserServiceImpl.java -------------------------------------------------------------------------------- /example-core/example-spring-mybatis/src/main/resources/META-INF/mappers/AddressMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-spring-mybatis/src/main/resources/META-INF/mappers/AddressMapper.xml -------------------------------------------------------------------------------- /example-core/example-spring-mybatis/src/main/resources/META-INF/mappers/OrderItemMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-spring-mybatis/src/main/resources/META-INF/mappers/OrderItemMapper.xml -------------------------------------------------------------------------------- /example-core/example-spring-mybatis/src/main/resources/META-INF/mappers/OrderMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-spring-mybatis/src/main/resources/META-INF/mappers/OrderMapper.xml -------------------------------------------------------------------------------- /example-core/example-spring-mybatis/src/main/resources/META-INF/mappers/UserMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/example-spring-mybatis/src/main/resources/META-INF/mappers/UserMapper.xml -------------------------------------------------------------------------------- /example-core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/example-core/pom.xml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/pom.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/pom.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/orchestration/raw/jdbc/JavaConfigurationExampleMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/orchestration/raw/jdbc/JavaConfigurationExampleMain.java -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/orchestration/raw/jdbc/YamlConfigurationExampleMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/orchestration/raw/jdbc/YamlConfigurationExampleMain.java -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/orchestration/raw/jdbc/config/RegistryCenterConfigurationUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/orchestration/raw/jdbc/config/RegistryCenterConfigurationUtil.java -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/orchestration/raw/jdbc/config/cloud/CloudEncryptConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/orchestration/raw/jdbc/config/cloud/CloudEncryptConfiguration.java -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/orchestration/raw/jdbc/config/cloud/CloudMasterSlaveConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/orchestration/raw/jdbc/config/cloud/CloudMasterSlaveConfiguration.java -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/orchestration/raw/jdbc/config/cloud/CloudShardingDatabasesAndTablesConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/orchestration/raw/jdbc/config/cloud/CloudShardingDatabasesAndTablesConfiguration.java -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/orchestration/raw/jdbc/config/local/LocalEncryptConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/orchestration/raw/jdbc/config/local/LocalEncryptConfiguration.java -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/orchestration/raw/jdbc/config/local/LocalMasterSlaveConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/orchestration/raw/jdbc/config/local/LocalMasterSlaveConfiguration.java -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/orchestration/raw/jdbc/config/local/LocalShardingDatabasesAndTablesConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/orchestration/raw/jdbc/config/local/LocalShardingDatabasesAndTablesConfiguration.java -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/orchestration/raw/jdbc/config/local/LocalShardingDatabasesConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/orchestration/raw/jdbc/config/local/LocalShardingDatabasesConfiguration.java -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/orchestration/raw/jdbc/config/local/LocalShardingMasterSlaveConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/orchestration/raw/jdbc/config/local/LocalShardingMasterSlaveConfiguration.java -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/orchestration/raw/jdbc/config/local/LocalShardingTablesConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/orchestration/raw/jdbc/config/local/LocalShardingTablesConfiguration.java -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/resources/META-INF/nacos/cloud/encrypt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/resources/META-INF/nacos/cloud/encrypt.yaml -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/resources/META-INF/nacos/cloud/master-slave.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/resources/META-INF/nacos/cloud/master-slave.yaml -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/resources/META-INF/nacos/cloud/sharding-databases-tables.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/resources/META-INF/nacos/cloud/sharding-databases-tables.yaml -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/resources/META-INF/nacos/local/encrypt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/resources/META-INF/nacos/local/encrypt.yaml -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/resources/META-INF/nacos/local/master-slave.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/resources/META-INF/nacos/local/master-slave.yaml -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/resources/META-INF/nacos/local/sharding-databases-tables.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/resources/META-INF/nacos/local/sharding-databases-tables.yaml -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/resources/META-INF/zookeeper/cloud/encrypt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/resources/META-INF/zookeeper/cloud/encrypt.yaml -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/resources/META-INF/zookeeper/cloud/master-slave.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/resources/META-INF/zookeeper/cloud/master-slave.yaml -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/resources/META-INF/zookeeper/cloud/sharding-databases-tables.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/resources/META-INF/zookeeper/cloud/sharding-databases-tables.yaml -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/resources/META-INF/zookeeper/local/encrypt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/resources/META-INF/zookeeper/local/encrypt.yaml -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/resources/META-INF/zookeeper/local/master-slave.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/resources/META-INF/zookeeper/local/master-slave.yaml -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/resources/META-INF/zookeeper/local/sharding-databases-tables.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/resources/META-INF/zookeeper/local/sharding-databases-tables.yaml -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-raw-jdbc-example/src/main/resources/logback.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-spring-boot-example/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-spring-boot-example/pom.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-spring-boot-example/src/main/java/org/apache/shardingsphere/example/orchestration/spring/boot/ExampleMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-spring-boot-example/src/main/java/org/apache/shardingsphere/example/orchestration/spring/boot/ExampleMain.java -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-spring-boot-example/src/main/resources/application-cloud-nacos-encrypt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-spring-boot-example/src/main/resources/application-cloud-nacos-encrypt.properties -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-spring-boot-example/src/main/resources/application-cloud-nacos-master-slave.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-spring-boot-example/src/main/resources/application-cloud-nacos-master-slave.properties -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-spring-boot-example/src/main/resources/application-cloud-nacos-sharding-databases-tables.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-spring-boot-example/src/main/resources/application-cloud-nacos-sharding-databases-tables.properties -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-spring-boot-example/src/main/resources/application-cloud-zookeeper-encrypt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-spring-boot-example/src/main/resources/application-cloud-zookeeper-encrypt.properties -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-spring-boot-example/src/main/resources/application-cloud-zookeeper-master-slave.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-spring-boot-example/src/main/resources/application-cloud-zookeeper-master-slave.properties -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-spring-boot-example/src/main/resources/application-cloud-zookeeper-sharding-databases-tables.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-spring-boot-example/src/main/resources/application-cloud-zookeeper-sharding-databases-tables.properties -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-spring-boot-example/src/main/resources/application-local-nacos-encrypt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-spring-boot-example/src/main/resources/application-local-nacos-encrypt.properties -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-spring-boot-example/src/main/resources/application-local-nacos-master-slave.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-spring-boot-example/src/main/resources/application-local-nacos-master-slave.properties -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-spring-boot-example/src/main/resources/application-local-nacos-sharding-databases-tables.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-spring-boot-example/src/main/resources/application-local-nacos-sharding-databases-tables.properties -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-spring-boot-example/src/main/resources/application-local-zookeeper-encrypt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-spring-boot-example/src/main/resources/application-local-zookeeper-encrypt.properties -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-spring-boot-example/src/main/resources/application-local-zookeeper-master-slave.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-spring-boot-example/src/main/resources/application-local-zookeeper-master-slave.properties -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-spring-boot-example/src/main/resources/application-local-zookeeper-sharding-databases-tables.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-spring-boot-example/src/main/resources/application-local-zookeeper-sharding-databases-tables.properties -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-spring-boot-example/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-spring-boot-example/src/main/resources/application.properties -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-spring-namespace-example/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-spring-namespace-example/pom.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-spring-namespace-example/src/main/java/org/apache/shardingsphere/example/orchestration/spring/namespace/ExampleMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-spring-namespace-example/src/main/java/org/apache/shardingsphere/example/orchestration/spring/namespace/ExampleMain.java -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-spring-namespace-example/src/main/resources/META-INF/nacos/cloud/application-encrypt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-spring-namespace-example/src/main/resources/META-INF/nacos/cloud/application-encrypt.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-spring-namespace-example/src/main/resources/META-INF/nacos/cloud/application-master-slave.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-spring-namespace-example/src/main/resources/META-INF/nacos/cloud/application-master-slave.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-spring-namespace-example/src/main/resources/META-INF/nacos/cloud/application-sharding-databases-tables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-spring-namespace-example/src/main/resources/META-INF/nacos/cloud/application-sharding-databases-tables.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-spring-namespace-example/src/main/resources/META-INF/nacos/local/application-encrypt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-spring-namespace-example/src/main/resources/META-INF/nacos/local/application-encrypt.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-spring-namespace-example/src/main/resources/META-INF/nacos/local/application-master-slave.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-spring-namespace-example/src/main/resources/META-INF/nacos/local/application-master-slave.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-spring-namespace-example/src/main/resources/META-INF/nacos/local/application-sharding-databases-tables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-spring-namespace-example/src/main/resources/META-INF/nacos/local/application-sharding-databases-tables.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-spring-namespace-example/src/main/resources/META-INF/nacos/registry-center.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-spring-namespace-example/src/main/resources/META-INF/nacos/registry-center.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-spring-namespace-example/src/main/resources/META-INF/zookeeper/cloud/application-encrypt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-spring-namespace-example/src/main/resources/META-INF/zookeeper/cloud/application-encrypt.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-spring-namespace-example/src/main/resources/META-INF/zookeeper/cloud/application-master-slave.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-spring-namespace-example/src/main/resources/META-INF/zookeeper/cloud/application-master-slave.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-spring-namespace-example/src/main/resources/META-INF/zookeeper/cloud/application-sharding-databases-tables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-spring-namespace-example/src/main/resources/META-INF/zookeeper/cloud/application-sharding-databases-tables.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-spring-namespace-example/src/main/resources/META-INF/zookeeper/local/application-encrypt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-spring-namespace-example/src/main/resources/META-INF/zookeeper/local/application-encrypt.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-spring-namespace-example/src/main/resources/META-INF/zookeeper/local/application-master-slave.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-spring-namespace-example/src/main/resources/META-INF/zookeeper/local/application-master-slave.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-spring-namespace-example/src/main/resources/META-INF/zookeeper/local/application-sharding-databases-tables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-spring-namespace-example/src/main/resources/META-INF/zookeeper/local/application-sharding-databases-tables.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-spring-namespace-example/src/main/resources/META-INF/zookeeper/registry-center.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-spring-namespace-example/src/main/resources/META-INF/zookeeper/registry-center.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/orchestration-spring-namespace-example/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/orchestration-spring-namespace-example/src/main/resources/logback.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/orchestration-example/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/orchestration-example/pom.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/other-feature-example/encrypt-example/encrypt-raw-jdbc-example/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/other-feature-example/encrypt-example/encrypt-raw-jdbc-example/pom.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/other-feature-example/encrypt-example/encrypt-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/encrypt/table/raw/jdbc/JavaConfigurationExampleMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/other-feature-example/encrypt-example/encrypt-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/encrypt/table/raw/jdbc/JavaConfigurationExampleMain.java -------------------------------------------------------------------------------- /sharding-jdbc-example/other-feature-example/encrypt-example/encrypt-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/encrypt/table/raw/jdbc/YamlConfigurationExampleMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/other-feature-example/encrypt-example/encrypt-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/encrypt/table/raw/jdbc/YamlConfigurationExampleMain.java -------------------------------------------------------------------------------- /sharding-jdbc-example/other-feature-example/encrypt-example/encrypt-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/encrypt/table/raw/jdbc/config/EncryptDatabasesConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/other-feature-example/encrypt-example/encrypt-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/encrypt/table/raw/jdbc/config/EncryptDatabasesConfiguration.java -------------------------------------------------------------------------------- /sharding-jdbc-example/other-feature-example/encrypt-example/encrypt-raw-jdbc-example/src/main/resources/META-INF/encrypt-databases.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/other-feature-example/encrypt-example/encrypt-raw-jdbc-example/src/main/resources/META-INF/encrypt-databases.yaml -------------------------------------------------------------------------------- /sharding-jdbc-example/other-feature-example/encrypt-example/encrypt-raw-jdbc-example/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/other-feature-example/encrypt-example/encrypt-raw-jdbc-example/src/main/resources/logback.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/other-feature-example/encrypt-example/encrypt-spring-boot-example/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/other-feature-example/encrypt-example/encrypt-spring-boot-example/pom.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/other-feature-example/encrypt-example/encrypt-spring-boot-example/src/main/java/org/apache/shardingsphere/example/encrypt/table/spring/boot/ExampleMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/other-feature-example/encrypt-example/encrypt-spring-boot-example/src/main/java/org/apache/shardingsphere/example/encrypt/table/spring/boot/ExampleMain.java -------------------------------------------------------------------------------- /sharding-jdbc-example/other-feature-example/encrypt-example/encrypt-spring-boot-example/src/main/resources/application-encrypt-databases.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/other-feature-example/encrypt-example/encrypt-spring-boot-example/src/main/resources/application-encrypt-databases.properties -------------------------------------------------------------------------------- /sharding-jdbc-example/other-feature-example/encrypt-example/encrypt-spring-boot-example/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/other-feature-example/encrypt-example/encrypt-spring-boot-example/src/main/resources/application.properties -------------------------------------------------------------------------------- /sharding-jdbc-example/other-feature-example/encrypt-example/encrypt-spring-boot-example/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/other-feature-example/encrypt-example/encrypt-spring-boot-example/src/main/resources/logback.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/other-feature-example/encrypt-example/encrypt-spring-namespace-example/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/other-feature-example/encrypt-example/encrypt-spring-namespace-example/pom.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/other-feature-example/encrypt-example/encrypt-spring-namespace-example/src/main/java/org/apache/shardingsphere/example/encrypt/table/spring/namespace/ExampleMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/other-feature-example/encrypt-example/encrypt-spring-namespace-example/src/main/java/org/apache/shardingsphere/example/encrypt/table/spring/namespace/ExampleMain.java -------------------------------------------------------------------------------- /sharding-jdbc-example/other-feature-example/encrypt-example/encrypt-spring-namespace-example/src/main/resources/META-INF/application-encrypt-databases.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/other-feature-example/encrypt-example/encrypt-spring-namespace-example/src/main/resources/META-INF/application-encrypt-databases.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/other-feature-example/encrypt-example/encrypt-spring-namespace-example/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/other-feature-example/encrypt-example/encrypt-spring-namespace-example/src/main/resources/logback.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/other-feature-example/encrypt-example/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/other-feature-example/encrypt-example/pom.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/other-feature-example/hint-example/hint-raw-jdbc-example/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/other-feature-example/hint-example/hint-raw-jdbc-example/pom.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/other-feature-example/hint-example/hint-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/hint/raw/jdbc/ExampleMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/other-feature-example/hint-example/hint-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/hint/raw/jdbc/ExampleMain.java -------------------------------------------------------------------------------- /sharding-jdbc-example/other-feature-example/hint-example/hint-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/hint/raw/jdbc/HintType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/other-feature-example/hint-example/hint-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/hint/raw/jdbc/HintType.java -------------------------------------------------------------------------------- /sharding-jdbc-example/other-feature-example/hint-example/hint-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/hint/raw/jdbc/ModuloHintShardingAlgorithm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/other-feature-example/hint-example/hint-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/hint/raw/jdbc/ModuloHintShardingAlgorithm.java -------------------------------------------------------------------------------- /sharding-jdbc-example/other-feature-example/hint-example/hint-raw-jdbc-example/src/main/resources/META-INF/hint-databases-only.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/other-feature-example/hint-example/hint-raw-jdbc-example/src/main/resources/META-INF/hint-databases-only.yaml -------------------------------------------------------------------------------- /sharding-jdbc-example/other-feature-example/hint-example/hint-raw-jdbc-example/src/main/resources/META-INF/hint-databases-tables.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/other-feature-example/hint-example/hint-raw-jdbc-example/src/main/resources/META-INF/hint-databases-tables.yaml -------------------------------------------------------------------------------- /sharding-jdbc-example/other-feature-example/hint-example/hint-raw-jdbc-example/src/main/resources/META-INF/hint-master-only.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/other-feature-example/hint-example/hint-raw-jdbc-example/src/main/resources/META-INF/hint-master-only.yaml -------------------------------------------------------------------------------- /sharding-jdbc-example/other-feature-example/hint-example/hint-raw-jdbc-example/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/other-feature-example/hint-example/hint-raw-jdbc-example/src/main/resources/logback.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/other-feature-example/hint-example/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/other-feature-example/hint-example/pom.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/other-feature-example/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/other-feature-example/pom.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/pom.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/pom.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/pom.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/sharding/raw/jdbc/JavaConfigurationExampleMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/sharding/raw/jdbc/JavaConfigurationExampleMain.java -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/sharding/raw/jdbc/JavaRangeConfigurationExampleMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/sharding/raw/jdbc/JavaRangeConfigurationExampleMain.java -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/sharding/raw/jdbc/YamlConfigurationExampleMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/sharding/raw/jdbc/YamlConfigurationExampleMain.java -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/sharding/raw/jdbc/YamlRangeConfigurationExampleMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/sharding/raw/jdbc/YamlRangeConfigurationExampleMain.java -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/sharding/raw/jdbc/config/MasterSlaveConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/sharding/raw/jdbc/config/MasterSlaveConfiguration.java -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/sharding/raw/jdbc/config/ShardingDatabasesAndTablesConfigurationPrecise.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/sharding/raw/jdbc/config/ShardingDatabasesAndTablesConfigurationPrecise.java -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/sharding/raw/jdbc/config/ShardingDatabasesAndTablesConfigurationRange.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/sharding/raw/jdbc/config/ShardingDatabasesAndTablesConfigurationRange.java -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/sharding/raw/jdbc/config/ShardingDatabasesConfigurationPrecise.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/sharding/raw/jdbc/config/ShardingDatabasesConfigurationPrecise.java -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/sharding/raw/jdbc/config/ShardingDatabasesConfigurationRange.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/sharding/raw/jdbc/config/ShardingDatabasesConfigurationRange.java -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/sharding/raw/jdbc/config/ShardingMasterSlaveConfigurationPrecise.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/sharding/raw/jdbc/config/ShardingMasterSlaveConfigurationPrecise.java -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/sharding/raw/jdbc/config/ShardingMasterSlaveConfigurationRange.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/sharding/raw/jdbc/config/ShardingMasterSlaveConfigurationRange.java -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/sharding/raw/jdbc/config/ShardingTablesConfigurationPrecise.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/sharding/raw/jdbc/config/ShardingTablesConfigurationPrecise.java -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/sharding/raw/jdbc/config/ShardingTablesConfigurationRange.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/sharding/raw/jdbc/config/ShardingTablesConfigurationRange.java -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/sharding/raw/jdbc/factory/DataSourceFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/sharding/raw/jdbc/factory/DataSourceFactory.java -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/sharding/raw/jdbc/factory/RangeDataSourceFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/sharding/raw/jdbc/factory/RangeDataSourceFactory.java -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/sharding/raw/jdbc/factory/YamlDataSourceFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/sharding/raw/jdbc/factory/YamlDataSourceFactory.java -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/sharding/raw/jdbc/factory/YamlRangeDataSourceFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/sharding/raw/jdbc/factory/YamlRangeDataSourceFactory.java -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/master-slave.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/master-slave.yaml -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-range.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-range.yaml -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-tables-range.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-tables-range.yaml -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-tables.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-tables.yaml -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-databases.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-databases.yaml -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-master-slave-range.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-master-slave-range.yaml -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-master-slave.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-master-slave.yaml -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-tables-range.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-tables-range.yaml -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-tables.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/META-INF/sharding-tables.yaml -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-raw-jdbc-example/src/main/resources/logback.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-spring-boot-jpa-example/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-spring-boot-jpa-example/pom.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-spring-boot-jpa-example/src/main/java/org/apache/shardingsphere/example/sharding/spring/boot/jpa/ExampleMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-spring-boot-jpa-example/src/main/java/org/apache/shardingsphere/example/sharding/spring/boot/jpa/ExampleMain.java -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-spring-boot-jpa-example/src/main/resources/application-master-slave.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-spring-boot-jpa-example/src/main/resources/application-master-slave.properties -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-spring-boot-jpa-example/src/main/resources/application-sharding-databases-tables.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-spring-boot-jpa-example/src/main/resources/application-sharding-databases-tables.properties -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-spring-boot-jpa-example/src/main/resources/application-sharding-databases.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-spring-boot-jpa-example/src/main/resources/application-sharding-databases.properties -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-spring-boot-jpa-example/src/main/resources/application-sharding-master-slave.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-spring-boot-jpa-example/src/main/resources/application-sharding-master-slave.properties -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-spring-boot-jpa-example/src/main/resources/application-sharding-tables.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-spring-boot-jpa-example/src/main/resources/application-sharding-tables.properties -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-spring-boot-jpa-example/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-spring-boot-jpa-example/src/main/resources/application.properties -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-spring-boot-jpa-example/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-spring-boot-jpa-example/src/main/resources/logback.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-spring-boot-mybatis-example/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-spring-boot-mybatis-example/pom.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-spring-boot-mybatis-example/src/main/java/org/apache/shardingsphere/example/sharding/spring/boot/mybatis/ExampleMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-spring-boot-mybatis-example/src/main/java/org/apache/shardingsphere/example/sharding/spring/boot/mybatis/ExampleMain.java -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-spring-boot-mybatis-example/src/main/resources/META-INF/mybatis-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-spring-boot-mybatis-example/src/main/resources/META-INF/mybatis-config.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-spring-boot-mybatis-example/src/main/resources/application-master-slave.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-spring-boot-mybatis-example/src/main/resources/application-master-slave.properties -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-spring-boot-mybatis-example/src/main/resources/application-sharding-databases-tables.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-spring-boot-mybatis-example/src/main/resources/application-sharding-databases-tables.properties -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-spring-boot-mybatis-example/src/main/resources/application-sharding-databases.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-spring-boot-mybatis-example/src/main/resources/application-sharding-databases.properties -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-spring-boot-mybatis-example/src/main/resources/application-sharding-master-slave.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-spring-boot-mybatis-example/src/main/resources/application-sharding-master-slave.properties -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-spring-boot-mybatis-example/src/main/resources/application-sharding-tables.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-spring-boot-mybatis-example/src/main/resources/application-sharding-tables.properties -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-spring-boot-mybatis-example/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-spring-boot-mybatis-example/src/main/resources/application.properties -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-spring-boot-mybatis-example/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-spring-boot-mybatis-example/src/main/resources/logback.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-spring-namespace-jpa-example/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-spring-namespace-jpa-example/pom.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-spring-namespace-jpa-example/src/main/java/org/apache/shardingsphere/example/sharding/spring/namespace/jpa/ExampleMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-spring-namespace-jpa-example/src/main/java/org/apache/shardingsphere/example/sharding/spring/namespace/jpa/ExampleMain.java -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-spring-namespace-jpa-example/src/main/resources/META-INF/application-master-slave.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-spring-namespace-jpa-example/src/main/resources/META-INF/application-master-slave.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-spring-namespace-jpa-example/src/main/resources/META-INF/application-sharding-databases-tables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-spring-namespace-jpa-example/src/main/resources/META-INF/application-sharding-databases-tables.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-spring-namespace-jpa-example/src/main/resources/META-INF/application-sharding-databases.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-spring-namespace-jpa-example/src/main/resources/META-INF/application-sharding-databases.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-spring-namespace-jpa-example/src/main/resources/META-INF/application-sharding-master-slave.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-spring-namespace-jpa-example/src/main/resources/META-INF/application-sharding-master-slave.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-spring-namespace-jpa-example/src/main/resources/META-INF/application-sharding-tables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-spring-namespace-jpa-example/src/main/resources/META-INF/application-sharding-tables.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-spring-namespace-jpa-example/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-spring-namespace-jpa-example/src/main/resources/logback.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-spring-namespace-mybatis-example/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-spring-namespace-mybatis-example/pom.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-spring-namespace-mybatis-example/src/main/java/org/apache/shardingsphere/example/sharding/spring/namespace/mybatis/ExampleMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-spring-namespace-mybatis-example/src/main/java/org/apache/shardingsphere/example/sharding/spring/namespace/mybatis/ExampleMain.java -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-spring-namespace-mybatis-example/src/main/resources/META-INF/application-master-slave.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-spring-namespace-mybatis-example/src/main/resources/META-INF/application-master-slave.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-spring-namespace-mybatis-example/src/main/resources/META-INF/application-sharding-databases-tables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-spring-namespace-mybatis-example/src/main/resources/META-INF/application-sharding-databases-tables.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-spring-namespace-mybatis-example/src/main/resources/META-INF/application-sharding-databases.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-spring-namespace-mybatis-example/src/main/resources/META-INF/application-sharding-databases.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-spring-namespace-mybatis-example/src/main/resources/META-INF/application-sharding-master-slave.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-spring-namespace-mybatis-example/src/main/resources/META-INF/application-sharding-master-slave.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-spring-namespace-mybatis-example/src/main/resources/META-INF/application-sharding-tables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-spring-namespace-mybatis-example/src/main/resources/META-INF/application-sharding-tables.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/sharding-example/sharding-spring-namespace-mybatis-example/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/sharding-example/sharding-spring-namespace-mybatis-example/src/main/resources/logback.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/transaction-example/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/transaction-example/pom.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/transaction-example/transaction-2pc-xa-raw-jdbc-example/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/transaction-example/transaction-2pc-xa-raw-jdbc-example/pom.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/transaction-example/transaction-2pc-xa-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/transaction/xa/raw/jdbc/ExampleMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/transaction-example/transaction-2pc-xa-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/transaction/xa/raw/jdbc/ExampleMain.java -------------------------------------------------------------------------------- /sharding-jdbc-example/transaction-example/transaction-2pc-xa-raw-jdbc-example/src/main/resources/META-INF/master-slave.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/transaction-example/transaction-2pc-xa-raw-jdbc-example/src/main/resources/META-INF/master-slave.yaml -------------------------------------------------------------------------------- /sharding-jdbc-example/transaction-example/transaction-2pc-xa-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-tables-postgresql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/transaction-example/transaction-2pc-xa-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-tables-postgresql.yaml -------------------------------------------------------------------------------- /sharding-jdbc-example/transaction-example/transaction-2pc-xa-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-tables.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/transaction-example/transaction-2pc-xa-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-tables.yaml -------------------------------------------------------------------------------- /sharding-jdbc-example/transaction-example/transaction-2pc-xa-raw-jdbc-example/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/transaction-example/transaction-2pc-xa-raw-jdbc-example/src/main/resources/logback.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/transaction-example/transaction-base-seata-raw-jdbc-example/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/transaction-example/transaction-base-seata-raw-jdbc-example/pom.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/transaction-example/transaction-base-seata-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/transaction/base/seata/raw/jdbc/ExampleMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/transaction-example/transaction-base-seata-raw-jdbc-example/src/main/java/org/apache/shardingsphere/example/transaction/base/seata/raw/jdbc/ExampleMain.java -------------------------------------------------------------------------------- /sharding-jdbc-example/transaction-example/transaction-base-seata-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-tables.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/transaction-example/transaction-base-seata-raw-jdbc-example/src/main/resources/META-INF/sharding-databases-tables.yaml -------------------------------------------------------------------------------- /sharding-jdbc-example/transaction-example/transaction-base-seata-raw-jdbc-example/src/main/resources/file.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/transaction-example/transaction-base-seata-raw-jdbc-example/src/main/resources/file.conf -------------------------------------------------------------------------------- /sharding-jdbc-example/transaction-example/transaction-base-seata-raw-jdbc-example/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/transaction-example/transaction-base-seata-raw-jdbc-example/src/main/resources/logback.xml -------------------------------------------------------------------------------- /sharding-jdbc-example/transaction-example/transaction-base-seata-raw-jdbc-example/src/main/resources/registry.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/transaction-example/transaction-base-seata-raw-jdbc-example/src/main/resources/registry.conf -------------------------------------------------------------------------------- /sharding-jdbc-example/transaction-example/transaction-base-seata-raw-jdbc-example/src/main/resources/seata.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/transaction-example/transaction-base-seata-raw-jdbc-example/src/main/resources/seata.conf -------------------------------------------------------------------------------- /sharding-jdbc-example/transaction-example/transaction-base-seata-raw-jdbc-example/src/main/resources/sql/undo_log.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-jdbc-example/transaction-example/transaction-base-seata-raw-jdbc-example/src/main/resources/sql/undo_log.sql -------------------------------------------------------------------------------- /sharding-proxy-example/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-proxy-example/pom.xml -------------------------------------------------------------------------------- /sharding-proxy-example/sharding-proxy-boot-mybatis-example/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-proxy-example/sharding-proxy-boot-mybatis-example/pom.xml -------------------------------------------------------------------------------- /sharding-proxy-example/sharding-proxy-boot-mybatis-example/src/main/java/org/apache/shardingsphere/example/proxy/spring/boot/mybatis/SpringBootStarterExample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-proxy-example/sharding-proxy-boot-mybatis-example/src/main/java/org/apache/shardingsphere/example/proxy/spring/boot/mybatis/SpringBootStarterExample.java -------------------------------------------------------------------------------- /sharding-proxy-example/sharding-proxy-boot-mybatis-example/src/main/resources/META-INF/mybatis-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-proxy-example/sharding-proxy-boot-mybatis-example/src/main/resources/META-INF/mybatis-config.xml -------------------------------------------------------------------------------- /sharding-proxy-example/sharding-proxy-boot-mybatis-example/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-proxy-example/sharding-proxy-boot-mybatis-example/src/main/resources/application.properties -------------------------------------------------------------------------------- /sharding-proxy-example/sharding-proxy-boot-mybatis-example/src/main/resources/conf/config-master_slave.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-proxy-example/sharding-proxy-boot-mybatis-example/src/main/resources/conf/config-master_slave.yaml -------------------------------------------------------------------------------- /sharding-proxy-example/sharding-proxy-boot-mybatis-example/src/main/resources/conf/config-sharding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-proxy-example/sharding-proxy-boot-mybatis-example/src/main/resources/conf/config-sharding.yaml -------------------------------------------------------------------------------- /sharding-proxy-example/sharding-proxy-boot-mybatis-example/src/main/resources/conf/server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-proxy-example/sharding-proxy-boot-mybatis-example/src/main/resources/conf/server.yaml -------------------------------------------------------------------------------- /sharding-proxy-example/sharding-proxy-boot-mybatis-example/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-proxy-example/sharding-proxy-boot-mybatis-example/src/main/resources/logback.xml -------------------------------------------------------------------------------- /sharding-proxy-example/sharding-proxy-hint-example/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-proxy-example/sharding-proxy-hint-example/pom.xml -------------------------------------------------------------------------------- /sharding-proxy-example/sharding-proxy-hint-example/src/main/java/org/apache/shardingsphere/example/proxy/hint/ExampleMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-proxy-example/sharding-proxy-hint-example/src/main/java/org/apache/shardingsphere/example/proxy/hint/ExampleMain.java -------------------------------------------------------------------------------- /sharding-proxy-example/sharding-proxy-hint-example/src/main/java/org/apache/shardingsphere/example/proxy/hint/HintType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-proxy-example/sharding-proxy-hint-example/src/main/java/org/apache/shardingsphere/example/proxy/hint/HintType.java -------------------------------------------------------------------------------- /sharding-proxy-example/sharding-proxy-hint-example/src/main/java/org/apache/shardingsphere/example/proxy/hint/ModuloHintShardingAlgorithm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-proxy-example/sharding-proxy-hint-example/src/main/java/org/apache/shardingsphere/example/proxy/hint/ModuloHintShardingAlgorithm.java -------------------------------------------------------------------------------- /sharding-proxy-example/sharding-proxy-hint-example/src/main/java/org/apache/shardingsphere/example/proxy/hint/config/DatasourceConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-proxy-example/sharding-proxy-hint-example/src/main/java/org/apache/shardingsphere/example/proxy/hint/config/DatasourceConfig.java -------------------------------------------------------------------------------- /sharding-proxy-example/sharding-proxy-hint-example/src/main/java/org/apache/shardingsphere/example/proxy/hint/factory/YamlDataSourceFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-proxy-example/sharding-proxy-hint-example/src/main/java/org/apache/shardingsphere/example/proxy/hint/factory/YamlDataSourceFactory.java -------------------------------------------------------------------------------- /sharding-proxy-example/sharding-proxy-hint-example/src/main/resources/META-INF/hint-databases-only.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-proxy-example/sharding-proxy-hint-example/src/main/resources/META-INF/hint-databases-only.yaml -------------------------------------------------------------------------------- /sharding-proxy-example/sharding-proxy-hint-example/src/main/resources/META-INF/hint-databases-tables.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-proxy-example/sharding-proxy-hint-example/src/main/resources/META-INF/hint-databases-tables.yaml -------------------------------------------------------------------------------- /sharding-proxy-example/sharding-proxy-hint-example/src/main/resources/META-INF/hint-master-only.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-proxy-example/sharding-proxy-hint-example/src/main/resources/META-INF/hint-master-only.yaml -------------------------------------------------------------------------------- /sharding-proxy-example/sharding-proxy-hint-example/src/main/resources/conf/config-databases-only.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-proxy-example/sharding-proxy-hint-example/src/main/resources/conf/config-databases-only.yaml -------------------------------------------------------------------------------- /sharding-proxy-example/sharding-proxy-hint-example/src/main/resources/conf/config-databases-tables.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-proxy-example/sharding-proxy-hint-example/src/main/resources/conf/config-databases-tables.yaml -------------------------------------------------------------------------------- /sharding-proxy-example/sharding-proxy-hint-example/src/main/resources/conf/config-master-only.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-proxy-example/sharding-proxy-hint-example/src/main/resources/conf/config-master-only.yaml -------------------------------------------------------------------------------- /sharding-proxy-example/sharding-proxy-hint-example/src/main/resources/conf/server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-proxy-example/sharding-proxy-hint-example/src/main/resources/conf/server.yaml -------------------------------------------------------------------------------- /sharding-proxy-example/sharding-proxy-hint-example/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/sharding-proxy-example/sharding-proxy-hint-example/src/main/resources/logback.xml -------------------------------------------------------------------------------- /src/resources/copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/src/resources/copyright.txt -------------------------------------------------------------------------------- /src/resources/manual_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/src/resources/manual_schema.sql -------------------------------------------------------------------------------- /src/resources/sharding_checks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/shardingsphere-example/HEAD/src/resources/sharding_checks.xml --------------------------------------------------------------------------------