Skip to content

Commit 0242cad

Browse files
committed
Initial commit
1 parent 11f79c6 commit 0242cad

21 files changed

+1239
-0
lines changed

.gitignore

Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
##############################
2+
## Java
3+
##############################
4+
.mtj.tmp/
5+
*.class
6+
*.jar
7+
*.war
8+
*.ear
9+
*.nar
10+
##logs in the project
11+
*.log
12+
##virtual machine crash logs
13+
hs_err_pid*
14+
##Mobile Tools for Java (J2ME)
15+
.mtj.tmp/
16+
17+
##############################
18+
## Maven
19+
##############################
20+
target/
21+
pom.xml.tag
22+
pom.xml.releaseBackup
23+
pom.xml.versionsBackup
24+
pom.xml.next
25+
pom.xml.bak
26+
release.properties
27+
dependency-reduced-pom.xml
28+
buildNumber.properties
29+
.mvn/timing.properties
30+
.mvn/wrapper/maven-wrapper.jar
31+
32+
##############################
33+
## Gradle
34+
##############################
35+
bin/
36+
build/
37+
.gradle
38+
.gradletasknamecache
39+
gradle-app.setting
40+
!gradle-wrapper.jar
41+
42+
##############################
43+
## IntelliJ
44+
##############################
45+
out/
46+
.idea/
47+
.idea_modules/
48+
*.iml
49+
*.ipr
50+
*.iws
51+
52+
##############################
53+
## Eclipse
54+
##############################
55+
.settings/
56+
bin/
57+
tmp/
58+
.metadata
59+
.classpath
60+
.project
61+
*.tmp
62+
*.bak
63+
*.swp
64+
*~.nib
65+
local.properties
66+
.loadpath
67+
.factorypath
68+
69+
##############################
70+
## STS
71+
##############################
72+
.apt_generated
73+
.classpath
74+
.factorypath
75+
.project
76+
.settings
77+
.springBeans
78+
.sts4-cache
79+
80+
##############################
81+
## NetBeans
82+
##############################
83+
nbproject/private/
84+
build/
85+
nbbuild/
86+
dist/
87+
nbdist/
88+
nbactions.xml
89+
nb-configuration.xml
90+
/.nb-gradle/
91+
92+
##############################
93+
## Visual Studio Code
94+
##############################
95+
.vscode/
96+
.code-workspace
97+
98+
##############################
99+
## OS X
100+
##############################
101+
.DS_Store

.mvn/wrapper/maven-wrapper.properties

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.6/apache-maven-3.8.6-bin.zip
2+
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.1.0/maven-wrapper-3.1.0.jar

HELP.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Getting Started
2+
3+
### Reference Documentation
4+
For further reference, please consider the following sections:
5+
6+
* [Official Apache Maven documentation](https://maven.apache.org/guides/index.html)
7+
* [Spring Boot Maven Plugin Reference Guide](https://docs.spring.io/spring-boot/docs/3.0.1/maven-plugin/reference/html/)
8+
* [Create an OCI image](https://docs.spring.io/spring-boot/docs/3.0.1/maven-plugin/reference/html/#build-image)
9+
* [Spring Web](https://docs.spring.io/spring-boot/docs/3.0.1/reference/htmlsingle/#web)
10+
* [Spring Boot DevTools](https://docs.spring.io/spring-boot/docs/3.0.1/reference/htmlsingle/#using.devtools)
11+
12+
### Guides
13+
The following guides illustrate how to use some features concretely:
14+
15+
* [Building a RESTful Web Service](https://spring.io/guides/gs/rest-service/)
16+
* [Serving Web Content with Spring MVC](https://spring.io/guides/gs/serving-web-content/)
17+
* [Building REST services with Spring](https://spring.io/guides/tutorials/rest/)
18+

0 commit comments

Comments
 (0)