Managing Shared and Extended Configuration in Nacos Spring Cloud
Shared and Extended Configuration Support in Nacos
In multi-module microservice architectures, common infrastructure settings—such as database connection strings, Redis endpoints, message broker URIs, or observability parameters—are frequently reused across services. To avoid duplication and simplify maintenance, Nacos Config provides two mecha ...
Posted on Wed, 20 May 2026 07:43:03 +0000 by konky
OpenFeign Source Code Deep Dive: Architecture and Request Processing Pipeline
Core Architecture Overview
OpenFeign leverages Spring's declarative HTTP client capabilities through a sophisticated bean registration and proxy generation mechanism. At its foundation, the framework utilizes Spring's FactoryBean pattern to create dynamic proxies for Feign client interfaces. When scanning for interfaces annotated with @FeignCli ...
Posted on Tue, 19 May 2026 00:45:02 +0000 by marcel
Service Discovery and Inter-Service Communication in Spring Cloud with Eureka
Using Netflix Feign Client for Service Calls
First, add the spring-cloud-starter-openfeign dependency to your project:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=" ...
Posted on Mon, 11 May 2026 13:30:21 +0000 by thoand