strider

Test RESTful API of Adventuretube Microservice Using Springdoc Swagger UI

This blog outlines the full journey of integrating and testing Swagger UI for the Adventuretube microservices system using Springdoc and Spring Cloud Gateway. The integration was accomplished through three main phases: Phase 1: Configuration of Swagger UI and OpenAPI Aggregation Below is a brief explanation of what needs to be done at the first phase; […]

Test RESTful API of Adventuretube Microservice Using Springdoc Swagger UI Read More »

Uncategorized

Adventuretube Microservice Security Architecture

🧭 Overview This document explains the security architecture of the Adventuretube platform, detailing how requests are authenticated and authorized across the API Gateway and individual microservices. A key design principle in this system is the separation of authentication responsibilities: The API Gateway acts as a global interceptor, validating whether requests are secure and forwarding them

Adventuretube Microservice Security Architecture Read More »

Uncategorized

Swagger UI Intergation vis Spring Cloud Gateway #2

🧭 Overview This document explains how Swagger UI is aggregated across multiple microservices behind a Spring Cloud Gateway, detailing the request flow and how security is managed. In my adventuretube microserice. It does require two separate two-phase of integration  🛠️ Two-Phase Integration Overview 🔹 Step 1: Swagger Configuration for Each Service Each microservice is configured

Swagger UI Intergation vis Spring Cloud Gateway #2 Read More »

Uncategorized

Backing Up WordPress in Docker: Complete Script & Setup Guide

📍 Overview This guide explains how to create a complete backup of a WordPress site running in Docker, covering both the database and uploaded media (including featured images). ⚙️ Docker Environment Summary My Docker setup includes: MariaDB container as the database service WordPress container with files stored in the wp_data Docker volume A custom backup

Backing Up WordPress in Docker: Complete Script & Setup Guide Read More »

wordpress

URI Construction and API Response Annotations in AuthController

1. Overview This document analyzes the register method in AuthController, focusing on the construction of the URI and the @ApiResponse annotations that define the API response structure. 2. Code Snippet @Operation(summary = “Signup user”) @ApiResponse(responseCode = “201”) // Created //@ApiResponse(responseCode = “404”, content = @Content(schema = @Schema(implementation = CommonErrorResponse.class))) @ApiResponse(responseCode = “401”, content = @Content(schema

URI Construction and API Response Annotations in AuthController Read More »

BACKEND(spring-microservice), Uncategorized

Swagger UI Intergation vis Spring Cloud Gateway #1

🧭 Overview This guide outlines the essential step-by-step setup for integrating Swagger 3 (OpenAPI 3) in a Spring Cloud microservices architecture. In my adventuretube microserice. It does require two separate two-phase of integration  🛠️ Two-Phase Integration Overview 🔹 Step 1: Swagger Configuration for Each Service Each microservice is configured with Springdoc OpenAPI to generate Swagger

Swagger UI Intergation vis Spring Cloud Gateway #1 Read More »

BACKEND(spring-microservice)

Understanding RESTful APIs and Fixing Common Mistakes

1. Introduction This document covers key concepts of RESTful APIs, the mistakes made in API design, why they were problematic, and how they were fixed. 2. What is a RESTful API? A RESTful API (Representational State Transfer API) is an architectural style for designing web services that follow a structured and predictable way of interacting

Understanding RESTful APIs and Fixing Common Mistakes Read More »

BACKEND(spring-microservice)

Getting Google Sign-In Token using Postman

This guide walks through the steps required to obtain a Google Sign-In token (ID token and access token) using Postman for testing and development purposes. Step 1: Set Up OAuth 2.0 Credentials in Google Cloud Go to Google Cloud Console. Create or select a project. Navigate to APIs & Services > Credentials. Click Create Credentials

Getting Google Sign-In Token using Postman Read More »

CI/CD Pipelines, DevOps

Maven Dependency Management Guide

1. Difference Between dependencyManagement and dependencies dependencyManagement Manages only versions of dependencies. Sub-modules must explicitly declare the dependency to use it. Ensures version consistency across all modules. dependencies Adds the dependency directly to the project. Automatically includes dependencies in sub-modules. Does not enforce a single version across modules. 📌 When to Use Which? Feature dependencyManagement

Maven Dependency Management Guide Read More »

DevOps, Version Control

Ensuring Correct IP Registration in Eureka

📌 Issue: Eureka Registers the Wrong IP (169.254.x.x) 🔍 Problem Statement Auth-Service (running on Mac) was registered with 169.254.x.x (a link-local address) instead of its correct local network IP (192.168.x.x). This caused gateway routing failures, as the wrong IP was unreachable. As a result, remote debugging could not be triggered, making development and debugging impossible.

Ensuring Correct IP Registration in Eureka Read More »

BACKEND(spring-microservice)