Tag

RMI

0 views collected around this technical thread.

Top Architect
Top Architect
Oct 16, 2020 · Backend Development

Understanding Java RPC Frameworks: RMI, Hessian, and Dubbo with Code Examples

This article explains the concepts and usage of three Java RPC frameworks—RMI, Hessian, and Dubbo—detailing their serialization methods, transport protocols, and service registration mechanisms, and provides complete code samples for interface definition, service implementation, client, and server setup.

DubboHessianJava
0 likes · 6 min read
Understanding Java RPC Frameworks: RMI, Hessian, and Dubbo with Code Examples
360 Quality & Efficiency
360 Quality & Efficiency
Jun 25, 2020 · Backend Development

Understanding Java RMI Serialization and Object Transmission with Example Code

This article explains the Java RMI communication model, the need for object serialization, the requirements for serializable classes, and provides complete example code for a Person class, object I/O operations, and a simple socket‑based stub‑skeleton implementation to demonstrate remote object retrieval.

Backend DevelopmentJavaObjectIO
0 likes · 8 min read
Understanding Java RMI Serialization and Object Transmission with Example Code
360 Quality & Efficiency
360 Quality & Efficiency
Mar 27, 2020 · Backend Development

Exploring JDK RMI: Architecture, Code Samples, and Service Invocation Process

This article introduces JDK RMI, explains its role in distributed Java applications, provides complete Maven project examples for interface, server, and client implementations, and details the underlying registry, stub, skeleton, and export mechanisms that enable remote method calls.

Backend DevelopmentJavaJava Example
0 likes · 10 min read
Exploring JDK RMI: Architecture, Code Samples, and Service Invocation Process
Java Captain
Java Captain
Jan 17, 2019 · Backend Development

Understanding Java RPC: RMI, Hessian, and Dubbo with Code Examples

This article explains the concept of RPC in Java, compares three popular frameworks—RMI, Hessian, and Dubbo—describes their architectures, and provides complete code samples for interfaces, service implementations, clients, and servers to help developers build scalable distributed applications.

DubboHessianJava
0 likes · 6 min read
Understanding Java RPC: RMI, Hessian, and Dubbo with Code Examples
Tencent IMWeb Frontend Team
Tencent IMWeb Frontend Team
Sep 24, 2018 · Backend Development

How Electron’s remote Module Mimics Java RMI to Seamlessly Share Objects Between Processes

This article explains the two inter‑process communication methods in Electron, demonstrates why the remote module behaves like a reference rather than a copy, and reveals its internal implementation that mirrors Java RMI by wrapping objects and functions as remote proxies using synchronous IPC messages.

ElectronIPCNode.js
0 likes · 14 min read
How Electron’s remote Module Mimics Java RMI to Seamlessly Share Objects Between Processes