Multithreaded Server with Java RMI

Cole Crescas
2 min readJun 27, 2022

Remote procedure calls are a foundation of client server architecture and utilized across the world. Remote method invocation is a subset of RPC and well established in Java. Shown here is the overview of RMI as well as a link to Github for the code base used to create a server that stores key-value pairs in a concurrent hash-map, accessible from multiple threads and clients.

RMI image for a Hello World Client Server communication

--

--