Part of the
java-spring-tutorialscollection of Spring.io guide implementations.
{One-paragraph description of what this module does and what Spring concepts it demonstrates.}
Based on Spring Guide: {Guide Name}.
{module-folder}/
├── pom.xml
├── src/main/java/com/example/{package}/
│ ├── {MainApplication}.java # Main entry point
│ └── {OtherClasses}.java # Other source files
├── src/main/resources/
│ └── application.properties
├── src/test/java/com/example/{package}/
│ └── {TestClasses}.java
└── docs/
├── DEVELOPER_NOTES.md # Personal notes
├── images/ # Screenshots
├── setup/
│ ├── spring-initializr.md # Project setup
│ └── run-instructions.md # How to run
├── concepts/
│ └── {concept}.md # Technical explanations
├── reference/
│ └── guide.md # Original Spring guide
└── adr/ # Architecture decisions
└── ADR-000X-{decision}.md
./mvnw spring-boot:runThen visit: http://localhost:8080/{endpoint}
{Add screenshot or curl output here}
{Brief explanation of the main concept}
{Brief explanation of another concept}
| File | Description |
|---|---|
| DEVELOPER_NOTES.md | Personal notes |
| spring-initializr.md | Project setup |
| run-instructions.md | How to run |
| {concept}.md | {Concept explanation} |
| guide.md | Original Spring guide |
| ADR | Decision |
|---|---|
| ADR-000X | {Decision title} |
./mvnw test- Spring Guide: {Guide Name}
- {Other relevant links}
