Java-based gRPC Service Registry Implementation
Overview of gRPC
gRPC is a high-performance, open-source remote procedure call (RPC) framework developed by Google. It uses the HTTP/2 protocol and supports multiple languages such as Java, C++, and Python. gRPC enables cross-language and cross-platform communication with more efficient data serialization and transmission, making it easier for ...
Posted on Wed, 29 Jul 2026 17:04:27 +0000 by scottgum
Building Eureka Service Registry and High Availability Clusters with Spring Boot and Spring Cloud
Setting Up Eureka Service Registry
Creating Eureka Server
For multiple Spring Boot projects, use a Maven multi-module structure. Create a main Maven project with Spring Boot and Spring Cloud dependencies in the parent POM:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0& ...
Posted on Wed, 13 May 2026 05:20:21 +0000 by vmarellano