Gateway Service Skill Service Type: API Gateway Central entry point for all API requests. Responsibilities - Request routing to backend services - Authentication/Authorization (JWT validation) - Rate limiting (Redis-based) - Circuit breaker (Resilience4j) - Request/Response logging - CORS handling Package Structure Key Components Route Configuration Routes are defined in : - Path-based routing - Circuit breaker per service - Rate limiting per endpoint Global Filters - LoggingFilter : Logs all requests, adds trace ID - AuthFilter : Validates JWT tokens (if needed) Fallback Controller Returns f…