Skip to content

Commit 024ddac

Browse files
committed
SpringBoot-HelloWorld init
1 parent 7e52b38 commit 024ddac

File tree

4 files changed

+73
-0
lines changed

4 files changed

+73
-0
lines changed

.gitignore

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
*.class
3+
*.log
4+
*.ctxt
5+
.mtj.tmp/
6+
*.jar
7+
*.war
8+
*.ear
9+
*.zip
10+
*.tar.gz
11+
*.rar
12+
hs_err_pid*
13+
.metadata
14+
bin/
15+
tmp/
16+
*.tmp
17+
*.bak
18+
*.swp
19+
*~.nib
20+
local.properties
21+
.settings/
22+
.loadpath
23+
.recommenders
24+
.project
25+
.externalToolBuilders/
26+
*.launch
27+
*.pydevproject
28+
.cproject
29+
.classpath
30+
.factorypath
31+
.buildpath
32+
.target
33+
.tern-project
34+
.texlipse
35+
.springBeans
36+
.recommenders/
37+
.cache-main
38+
.scala_dependencies
39+
.worksheet
40+
将删除 .idea/

SpringBoot-HelloWorld/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# SpringBoot学习--HellWorld
2+
SpringBoot学习

SpringBoot-HelloWorld/pom.xml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<parent>
6+
<artifactId>SpringBoot-Study</artifactId>
7+
<groupId>groupId</groupId>
8+
<version>1.0-SNAPSHOT</version>
9+
</parent>
10+
<modelVersion>4.0.0</modelVersion>
11+
12+
<artifactId>SpringBoot-HelloWorld</artifactId>
13+
14+
15+
</project>

pom.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>groupId</groupId>
8+
<artifactId>SpringBoot-Study</artifactId>
9+
<packaging>pom</packaging>
10+
<version>1.0-SNAPSHOT</version>
11+
<modules>
12+
<module>SpringBoot-HelloWorld</module>
13+
</modules>
14+
15+
16+
</project>

0 commit comments

Comments
 (0)