Loading sharding-jdbc-example/spring-boot-example/spring-boot-data-jpa-example/src/main/java/io/shardingsphere/example/spring/boot/jpa/SpringBootDataMain.java→sharding-jdbc-example/spring-boot-nodep-example/spring-boot-nodep-jpa-example/src/main/java/io/shardingsphere/example/spring/boot/jpa/SpringBootDataMain.java +0 −0 File moved. View file sharding-jdbc-example/spring-boot-example/spring-boot-data-mybatis-example/src/main/java/io/shardingsphere/example/spring/boot/mybatis/SpringBootDataMain.java→sharding-jdbc-example/spring-boot-nodep-example/spring-boot-nodep-mybatis-example/src/main/java/io/shardingsphere/example/spring/boot/mybatis/SpringBootDataMain.java +0 −0 File moved. View file sharding-jdbc-example/spring-boot-orche-example/spring-boot-orche-jpa-example/src/main/java/io/shardingsphere/example/spring/boot/jpa/SpringBootDataMain.java 0 → 100644 +37 −0 Original line number Diff line number Diff line /* * Copyright 2016-2018 shardingsphere.io. * <p> * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * </p> */ package io.shardingsphere.example.spring.boot.jpa; import io.shardingsphere.example.repository.jpa.service.DemoService; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.autoconfigure.domain.EntityScan; import org.springframework.context.ConfigurableApplicationContext; import org.springframework.context.annotation.ComponentScan; @ComponentScan("io.shardingsphere.example.repository.jpa") @EntityScan(basePackages = "io.shardingsphere.example.repository.jpa") @SpringBootApplication public class SpringBootDataMain { public static void main(final String[] args) { try (ConfigurableApplicationContext applicationContext = SpringApplication.run(SpringBootDataMain.class, args)) { applicationContext.getBean(DemoService.class).demo(); } } } sharding-jdbc-example/spring-boot-orche-example/spring-boot-orche-mybatis-example/src/main/java/io/shardingsphere/example/spring/boot/mybatis/SpringBootDataMain.java 0 → 100644 +39 −0 Original line number Diff line number Diff line /* * Copyright 2016-2018 shardingsphere.io. * <p> * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * </p> */ package io.shardingsphere.example.spring.boot.mybatis; import io.shardingsphere.example.repository.mybatis.service.DemoService; import org.mybatis.spring.annotation.MapperScan; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.autoconfigure.domain.EntityScan; import org.springframework.context.ConfigurableApplicationContext; import org.springframework.context.annotation.ComponentScan; @ComponentScan("io.shardingsphere.example.repository.mybatis") @EntityScan(basePackages = "io.shardingsphere.example.repository.mybatis.entity") @MapperScan(basePackages = "io.shardingsphere.example.repository.mybatis.repository") @SpringBootApplication public class SpringBootDataMain { public static void main(final String[] args) { try (ConfigurableApplicationContext applicationContext = SpringApplication.run(SpringBootDataMain.class, args)) { applicationContext.getBean(DemoService.class).demo(); } } } Loading
sharding-jdbc-example/spring-boot-example/spring-boot-data-jpa-example/src/main/java/io/shardingsphere/example/spring/boot/jpa/SpringBootDataMain.java→sharding-jdbc-example/spring-boot-nodep-example/spring-boot-nodep-jpa-example/src/main/java/io/shardingsphere/example/spring/boot/jpa/SpringBootDataMain.java +0 −0 File moved. View file
sharding-jdbc-example/spring-boot-example/spring-boot-data-mybatis-example/src/main/java/io/shardingsphere/example/spring/boot/mybatis/SpringBootDataMain.java→sharding-jdbc-example/spring-boot-nodep-example/spring-boot-nodep-mybatis-example/src/main/java/io/shardingsphere/example/spring/boot/mybatis/SpringBootDataMain.java +0 −0 File moved. View file
sharding-jdbc-example/spring-boot-orche-example/spring-boot-orche-jpa-example/src/main/java/io/shardingsphere/example/spring/boot/jpa/SpringBootDataMain.java 0 → 100644 +37 −0 Original line number Diff line number Diff line /* * Copyright 2016-2018 shardingsphere.io. * <p> * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * </p> */ package io.shardingsphere.example.spring.boot.jpa; import io.shardingsphere.example.repository.jpa.service.DemoService; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.autoconfigure.domain.EntityScan; import org.springframework.context.ConfigurableApplicationContext; import org.springframework.context.annotation.ComponentScan; @ComponentScan("io.shardingsphere.example.repository.jpa") @EntityScan(basePackages = "io.shardingsphere.example.repository.jpa") @SpringBootApplication public class SpringBootDataMain { public static void main(final String[] args) { try (ConfigurableApplicationContext applicationContext = SpringApplication.run(SpringBootDataMain.class, args)) { applicationContext.getBean(DemoService.class).demo(); } } }
sharding-jdbc-example/spring-boot-orche-example/spring-boot-orche-mybatis-example/src/main/java/io/shardingsphere/example/spring/boot/mybatis/SpringBootDataMain.java 0 → 100644 +39 −0 Original line number Diff line number Diff line /* * Copyright 2016-2018 shardingsphere.io. * <p> * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * </p> */ package io.shardingsphere.example.spring.boot.mybatis; import io.shardingsphere.example.repository.mybatis.service.DemoService; import org.mybatis.spring.annotation.MapperScan; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.autoconfigure.domain.EntityScan; import org.springframework.context.ConfigurableApplicationContext; import org.springframework.context.annotation.ComponentScan; @ComponentScan("io.shardingsphere.example.repository.mybatis") @EntityScan(basePackages = "io.shardingsphere.example.repository.mybatis.entity") @MapperScan(basePackages = "io.shardingsphere.example.repository.mybatis.repository") @SpringBootApplication public class SpringBootDataMain { public static void main(final String[] args) { try (ConfigurableApplicationContext applicationContext = SpringApplication.run(SpringBootDataMain.class, args)) { applicationContext.getBean(DemoService.class).demo(); } } }