Browse Source

🎉 spring-boot-demo-ureport2 初始化

pull/1/head
Yangkai.Shen 5 years ago
parent
commit
46be9b0b96
6 changed files with 105 additions and 0 deletions
  1. +1
    -0
      pom.xml
  2. +25
    -0
      spring-boot-demo-ureport2/.gitignore
  3. +48
    -0
      spring-boot-demo-ureport2/pom.xml
  4. +14
    -0
      spring-boot-demo-ureport2/src/main/java/com/xkcoding/ureport2/SpringBootDemoUreport2Application.java
  5. +0
    -0
      spring-boot-demo-ureport2/src/main/resources/application.properties
  6. +17
    -0
      spring-boot-demo-ureport2/src/test/java/com/xkcoding/ureport2/SpringBootDemoUreport2ApplicationTests.java

+ 1
- 0
pom.xml View File

@@ -44,6 +44,7 @@
<module>spring-boot-demo-mq-kafka</module> <module>spring-boot-demo-mq-kafka</module>
<module>spring-boot-demo-websocket</module> <module>spring-boot-demo-websocket</module>
<module>spring-boot-demo-websocket-socketio</module> <module>spring-boot-demo-websocket-socketio</module>
<module>spring-boot-demo-ureport2</module>
<module>spring-boot-demo-activiti</module> <module>spring-boot-demo-activiti</module>
<module>spring-boot-demo-async</module> <module>spring-boot-demo-async</module>
<module>spring-boot-demo-dubbo</module> <module>spring-boot-demo-dubbo</module>


+ 25
- 0
spring-boot-demo-ureport2/.gitignore View File

@@ -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/

+ 48
- 0
spring-boot-demo-ureport2/pom.xml View File

@@ -0,0 +1,48 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<artifactId>spring-boot-demo-ureport2</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>spring-boot-demo-ureport2</name>
<description>Demo project for Spring Boot</description>

<parent>
<groupId>com.xkcoding</groupId>
<artifactId>spring-boot-demo</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
</properties>

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<finalName>spring-boot-demo-ureport2</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>

</project>

+ 14
- 0
spring-boot-demo-ureport2/src/main/java/com/xkcoding/ureport2/SpringBootDemoUreport2Application.java View File

@@ -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);
}

}


+ 0
- 0
spring-boot-demo-ureport2/src/main/resources/application.properties View File


+ 17
- 0
spring-boot-demo-ureport2/src/test/java/com/xkcoding/ureport2/SpringBootDemoUreport2ApplicationTests.java View File

@@ -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() {
}

}


Loading…
Cancel
Save