Skip to content

Latest commit

 

History

History
86 lines (63 loc) · 2.87 KB

File metadata and controls

86 lines (63 loc) · 2.87 KB

{Module Title}

Coverage Mutation SpotBugs

Part of the java-spring-tutorials collection 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}.

File Index

{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

Quick Start

./mvnw spring-boot:run

Then visit: http://localhost:8080/{endpoint}

Example Output

{Add screenshot or curl output here}

{description}

Key Concepts

{Concept 1}

{Brief explanation of the main concept}

{Concept 2}

{Brief explanation of another concept}

Documentation

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

ADRs

ADR Decision
ADR-000X {Decision title}

Run Tests

./mvnw test

Related