From efc65d224451fa815135e4d94c44411695e282c8 Mon Sep 17 00:00:00 2001 From: "Yangkai.Shen" <237497819@qq.com> Date: Fri, 9 Nov 2018 18:55:40 +0800 Subject: [PATCH] =?UTF-8?q?:sparkles:=20spring-boot-demo-orm-beetlsql=20?= =?UTF-8?q?=E5=88=9D=E5=A7=8B=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pom.xml | 1 + spring-boot-demo-orm-beetlsql/.gitignore | 25 ++++++++++ spring-boot-demo-orm-beetlsql/pom.xml | 48 +++++++++++++++++++ .../SpringBootDemoOrmBeetlsqlApplication.java | 12 +++++ .../src/main/resources/application.properties | 0 ...ngBootDemoOrmBeetlsqlApplicationTests.java | 16 +++++++ 6 files changed, 102 insertions(+) create mode 100644 spring-boot-demo-orm-beetlsql/.gitignore create mode 100644 spring-boot-demo-orm-beetlsql/pom.xml create mode 100644 spring-boot-demo-orm-beetlsql/src/main/java/com/xkcoding/orm/beetlsql/SpringBootDemoOrmBeetlsqlApplication.java create mode 100644 spring-boot-demo-orm-beetlsql/src/main/resources/application.properties create mode 100644 spring-boot-demo-orm-beetlsql/src/test/java/com/xkcoding/orm/beetlsql/SpringBootDemoOrmBeetlsqlApplicationTests.java diff --git a/pom.xml b/pom.xml index adc6bf1..87c893a 100644 --- a/pom.xml +++ b/pom.xml @@ -25,6 +25,7 @@ spring-boot-demo-orm-mybatis spring-boot-demo-orm-mybatis-mapper-page spring-boot-demo-orm-mybatis-plus + spring-boot-demo-orm-beetlsql spring-boot-demo-email spring-boot-demo-upload spring-boot-demo-war diff --git a/spring-boot-demo-orm-beetlsql/.gitignore b/spring-boot-demo-orm-beetlsql/.gitignore new file mode 100644 index 0000000..82eca33 --- /dev/null +++ b/spring-boot-demo-orm-beetlsql/.gitignore @@ -0,0 +1,25 @@ +/target/ +!.mvn/wrapper/maven-wrapper.jar + +### STS ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr + +### NetBeans ### +/nbproject/private/ +/build/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ \ No newline at end of file diff --git a/spring-boot-demo-orm-beetlsql/pom.xml b/spring-boot-demo-orm-beetlsql/pom.xml new file mode 100644 index 0000000..8fa165a --- /dev/null +++ b/spring-boot-demo-orm-beetlsql/pom.xml @@ -0,0 +1,48 @@ + + + 4.0.0 + + spring-boot-demo-orm-beetlsql + 1.0.0-SNAPSHOT + jar + + spring-boot-demo-orm-beetlsql + Demo project for Spring Boot + + + com.xkcoding + spring-boot-demo + 1.0.0-SNAPSHOT + + + + UTF-8 + UTF-8 + 1.8 + + + + + org.springframework.boot + spring-boot-starter + + + + org.springframework.boot + spring-boot-starter-test + test + + + + + spring-boot-demo-orm-beetlsql + + + org.springframework.boot + spring-boot-maven-plugin + + + + + diff --git a/spring-boot-demo-orm-beetlsql/src/main/java/com/xkcoding/orm/beetlsql/SpringBootDemoOrmBeetlsqlApplication.java b/spring-boot-demo-orm-beetlsql/src/main/java/com/xkcoding/orm/beetlsql/SpringBootDemoOrmBeetlsqlApplication.java new file mode 100644 index 0000000..884d778 --- /dev/null +++ b/spring-boot-demo-orm-beetlsql/src/main/java/com/xkcoding/orm/beetlsql/SpringBootDemoOrmBeetlsqlApplication.java @@ -0,0 +1,12 @@ +package com.xkcoding.orm.beetlsql; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class SpringBootDemoOrmBeetlsqlApplication { + + public static void main(String[] args) { + SpringApplication.run(SpringBootDemoOrmBeetlsqlApplication.class, args); + } +} diff --git a/spring-boot-demo-orm-beetlsql/src/main/resources/application.properties b/spring-boot-demo-orm-beetlsql/src/main/resources/application.properties new file mode 100644 index 0000000..e69de29 diff --git a/spring-boot-demo-orm-beetlsql/src/test/java/com/xkcoding/orm/beetlsql/SpringBootDemoOrmBeetlsqlApplicationTests.java b/spring-boot-demo-orm-beetlsql/src/test/java/com/xkcoding/orm/beetlsql/SpringBootDemoOrmBeetlsqlApplicationTests.java new file mode 100644 index 0000000..018c65f --- /dev/null +++ b/spring-boot-demo-orm-beetlsql/src/test/java/com/xkcoding/orm/beetlsql/SpringBootDemoOrmBeetlsqlApplicationTests.java @@ -0,0 +1,16 @@ +package com.xkcoding.orm.beetlsql; + +import org.junit.Test; +import org.junit.runner.RunWith; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.test.context.junit4.SpringRunner; + +@RunWith(SpringRunner.class) +@SpringBootTest +public class SpringBootDemoOrmBeetlsqlApplicationTests { + + @Test + public void contextLoads() { + } + +}