To inspect cloud cost and advise accordingly
- Architecture Layers:
flowchart TD
subgraph "Controller"
direction TB
CloudCostController
end
subgraph "Service"
direction TB
CloudComputeServiceProvider
end
subgraph "Repository"
direction TB
VMComputeRepository --> DB
end
Controller --> Service
Service --> Repository
- Controller -> Service -> Repository - DONE
- REST API (OpenAPI Specification)
- HTTP Standard - API Best Practices for Error Codes
- Health Metrics using Actuator - DONE
- Enable Transaction Management
- JPA (SQL) using Spring Data - DONE
- JPA (NOSQL - MongoDB)
- Exception Handling
- Global Exception Handler
- Event-driven Service
- Docker Image - DONE
- Enable Native Image
- Java Best Practices - Generics, Streams
- Lombok (Getter/Setter) Code Generation - DONE
- Spring Boot Best Practices
- Logging using SL4J Lombok - DONE
- Auditing JPA - DONE
- Prometheus Instrumentation - DONE
- Configured GitHub Action to build Docker Image - DONE
- Supports Docker Image building using Spring Plugin (gradle bootBuildImage)
- Build Docker Image using JIB
- GraphQL
- For Kubernetes (Liveness & Readiness Probe) - DONE
- Swagger - DONE
- Pageable Response using Spring - DONE
- Spring Boot 3 with OpenAPI (with actuator integration) - DONE
- Use Buildpack
- Tools required: Git, Gradle, Docker
- Plugins: Snyk Security, SonarQube
- Health: Prometheus Metrics, Actuator
- Docs: Swagger URL
- OpenAPI Docs
- DB: H2-Console
- API Endpoints: VM Rest API
- For Spring Boot 3 with OpenAPI
- https://spring.io/guides/tutorials/rest/
- https://github.com/spring-guides/tut-rest
- https://medium.com/@berkaybasoz/spring-boot-h2-database-setup-6996a1c18cc
- https://github.com/eugenp/tutorials/blob/master/persistence-modules/spring-jpa-2/
- https://www.baeldung.com/spring-rest-openapi-documentation
- https://www.baeldung.com/intro-to-project-lombok
- https://www.baeldung.com/database-auditing-jpa
- https://docs.spring.io/spring-data/jpa/docs/1.7.0.DATAJPA-580-SNAPSHOT/reference/html/auditing.html
- https://docs.spring.io/spring-boot/docs/current/reference/html/actuator.html
- https://www.baeldung.com/spring-boot-actuators
- https://www.baeldung.com/spring-liveness-readiness-probes
- https://spring.io/blog/2020/03/25/liveness-and-readiness-probes-with-spring-boot
- Prometheus Instrumentation
- Docker Image in Spring