File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -15,9 +15,9 @@ Proof of Concept for a RESTful Web Service built with **Spring Boot 4** targetin
1515
1616## Features
1717
18- - 📚 ** Clean Architecture** - Layered design with clear separation of concerns
19- - 📝 ** Interactive Documentation** - Live API exploration and testing interface
20- - 🚦 ** Input Validation** - Bean Validation (JSR-380) constraints
18+ - 🏗️ ** Clean Architecture** - Layered design with clear separation of concerns
19+ - 📚 ** Interactive Documentation** - Live API exploration and testing interface
20+ - ✅ ** Input Validation** - Bean Validation (JSR-380) constraints
2121- ⚡ ** Performance Caching** - Optimized data retrieval with cache annotations
2222- 🐳 ** Containerized Deployment** - Multi-stage builds with pre-seeded database
2323- 🔄 ** Automated Pipeline** - Continuous integration with automated testing and builds
@@ -147,7 +147,7 @@ Interactive API documentation is available via Swagger UI at `http://localhost:9
147147| ` GET ` | ` /players/search/league/{league} ` | Search players by league | ` 200 OK ` |
148148| ` GET ` | ` /players/squadnumber/{squadNumber} ` | Get player by squad number | ` 200 OK ` |
149149| ` POST ` | ` /players ` | Create new player | ` 201 Created ` |
150- | ` PUT ` | ` /players/{id} ` | Update player by ID | ` 200 OK ` |
150+ | ` PUT ` | ` /players/{id} ` | Update player by ID | ` 204 No Content ` |
151151| ` DELETE ` | ` /players/{id} ` | Remove player by ID | ` 204 No Content ` |
152152| ` GET ` | ` /actuator/health ` | Health check | ` 200 OK ` |
153153
You can’t perform that action at this time.
0 commit comments