diff --git a/pom.xml b/pom.xml
index 5899e0e..b78b9cc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -44,6 +44,7 @@
spring-boot-demo-mq-kafka
spring-boot-demo-websocket
spring-boot-demo-websocket-socketio
+ spring-boot-demo-ureport2
spring-boot-demo-activiti
spring-boot-demo-async
spring-boot-demo-dubbo
diff --git a/spring-boot-demo-ureport2/.gitignore b/spring-boot-demo-ureport2/.gitignore
new file mode 100644
index 0000000..82eca33
--- /dev/null
+++ b/spring-boot-demo-ureport2/.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-ureport2/pom.xml b/spring-boot-demo-ureport2/pom.xml
new file mode 100644
index 0000000..a922faa
--- /dev/null
+++ b/spring-boot-demo-ureport2/pom.xml
@@ -0,0 +1,48 @@
+
+
+ 4.0.0
+
+ spring-boot-demo-ureport2
+ 1.0.0-SNAPSHOT
+ jar
+
+ spring-boot-demo-ureport2
+ 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-ureport2
+
+
+ org.springframework.boot
+ spring-boot-maven-plugin
+
+
+
+
+
diff --git a/spring-boot-demo-ureport2/src/main/java/com/xkcoding/ureport2/SpringBootDemoUreport2Application.java b/spring-boot-demo-ureport2/src/main/java/com/xkcoding/ureport2/SpringBootDemoUreport2Application.java
new file mode 100644
index 0000000..97e52c9
--- /dev/null
+++ b/spring-boot-demo-ureport2/src/main/java/com/xkcoding/ureport2/SpringBootDemoUreport2Application.java
@@ -0,0 +1,14 @@
+package com.xkcoding.ureport2;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+
+@SpringBootApplication
+public class SpringBootDemoUreport2Application {
+
+ public static void main(String[] args) {
+ SpringApplication.run(SpringBootDemoUreport2Application.class, args);
+ }
+
+}
+
diff --git a/spring-boot-demo-ureport2/src/main/resources/application.properties b/spring-boot-demo-ureport2/src/main/resources/application.properties
new file mode 100644
index 0000000..e69de29
diff --git a/spring-boot-demo-ureport2/src/test/java/com/xkcoding/ureport2/SpringBootDemoUreport2ApplicationTests.java b/spring-boot-demo-ureport2/src/test/java/com/xkcoding/ureport2/SpringBootDemoUreport2ApplicationTests.java
new file mode 100644
index 0000000..8779706
--- /dev/null
+++ b/spring-boot-demo-ureport2/src/test/java/com/xkcoding/ureport2/SpringBootDemoUreport2ApplicationTests.java
@@ -0,0 +1,17 @@
+package com.xkcoding.ureport2;
+
+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 SpringBootDemoUreport2ApplicationTests {
+
+ @Test
+ public void contextLoads() {
+ }
+
+}
+