// the find
navinreddy20/MicroserviceTutorials
Tutorial companion code for a Telusko YouTube series on Spring Boot microservices. It wires together a quiz app split across question-service and quiz-service, with Eureka for service discovery and Spring Cloud Gateway as the API gateway. This is reference material for people following along with the videos, not a production template.
The four-service layout (registry, gateway, question, quiz) covers the core Spring Cloud stack in one place — Eureka, Feign client, and Gateway all present and connected. Feign in quiz-service calling question-service is the most instructive part: it shows inter-service HTTP without manual RestTemplate boilerplate. The SQL seed file is a small but useful touch — you can actually run the thing without writing your own data. Active maintenance (pushed July 2025) means the Spring Boot versions aren't embarrassingly stale.
No tests worth mentioning — every test class is the auto-generated Spring context smoke test, nothing else. There's no Docker Compose file, so 'getting it running' means manually starting four services in the right order and hoping Eureka is up first. The .DS_Store files checked into every directory signal this was never reviewed before committing. No circuit breaker (Resilience4j or otherwise) means the Feign calls have no fallback — that's the most important missing piece for anyone trying to use this as a real reference.