Frontend-Backend Integration Strategies for Distributed Systems: Local, Staging, and Production Scenarios
Effective collaboration between frontend and backend services in distributed architectures requires careful configuration of request routing, especially when switching between local development, staging, and production environments. This guide outlines three common deployment scenarios using Vue.js, Spring Cloud Gateway, Kubernetes, and Nginx, ...
Posted on Wed, 10 Jun 2026 17:10:08 +0000 by BryonS
Spring Cloud Gateway: Custom Filters and Filter Factories
Custom Gateway Filter Implementation
When you need to implement custom logic within the gateway's request processing pipeline, the GatewayFilter interface provides the necessary hooks. Below is a timing filter that meausres request duration:
import org.springframework.cloud.gateway.filter.GatewayFilter;
import org.springframework.core.Ordered;
...
Posted on Tue, 19 May 2026 09:32:19 +0000 by erikwebb