Skip to content

Commit 76e94db

Browse files
committed
spring tutorial
1 parent 2354663 commit 76e94db

21 files changed

Lines changed: 1347 additions & 2 deletions

.gitignore

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
*#
2+
*.iml
3+
*.ipr
4+
*.iws
5+
*.jar
6+
*.sw?
7+
*~
8+
.#*
9+
.*.md.html
10+
.DS_Store
11+
.attach_pid*
12+
.classpath
13+
.factorypath
14+
.gradle
15+
.metadata
16+
.project
17+
.recommenders
18+
.settings
19+
.springBeans
20+
.vscode
21+
/code
22+
MANIFEST.MF
23+
_site/
24+
activemq-data
25+
bin
26+
build
27+
!/**/src/**/bin
28+
!/**/src/**/build
29+
build.log
30+
dependency-reduced-pom.xml
31+
dump.rdb
32+
interpolated*.xml
33+
lib/
34+
manifest.yml
35+
out
36+
overridedb.*
37+
target
38+
.flattened-pom.xml
39+
secrets.yml
40+
.gradletasknamecache
41+
.sts4-cache
42+
43+
.idea
44+
.env

HELP.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Read Me First
2+
The following was discovered as part of building this project:
3+
4+
* The original package name 'com.ceos23.spring-boot' is invalid and this project uses 'com.ceos23.spring_boot' instead.
5+
6+
# Getting Started
7+
8+
### Reference Documentation
9+
For further reference, please consider the following sections:
10+
11+
* [Official Gradle documentation](https://docs.gradle.org)
12+
* [Spring Boot Gradle Plugin Reference Guide](https://docs.spring.io/spring-boot/4.0.3/gradle-plugin)
13+
* [Create an OCI image](https://docs.spring.io/spring-boot/4.0.3/gradle-plugin/packaging-oci-image.html)
14+
* [Spring Web](https://docs.spring.io/spring-boot/4.0.3/reference/web/servlet.html)
15+
16+
### Guides
17+
The following guides illustrate how to use some features concretely:
18+
19+
* [Building a RESTful Web Service](https://spring.io/guides/gs/rest-service/)
20+
* [Serving Web Content with Spring MVC](https://spring.io/guides/gs/serving-web-content/)
21+
* [Building REST services with Spring](https://spring.io/guides/tutorials/rest/)
22+
23+
### Additional Links
24+
These additional references should also help you:
25+
26+
* [Gradle Build Scans – insights for your project's build](https://scans.gradle.com#gradle)
27+

0 commit comments

Comments
 (0)