Definition of RMI RPC (Remote Procedure Call): Remote method call is used by one process to call a procedure in another process, thus providing the distribution capability of the process. RMI (Remote Method Invocation): Remote method invocation is a step forward on the basis of RPC, providing communication between distributed objects. It allows objects running in one Java virtual machine to call methods of objects running in another Java virtual machine. These two virtual machines can be running in different processes on the same computer or in different computers on the network. The full name of RMI is to simplify the calling of remote interface objects as much as possible. RMI greatly enhances Java's ability to develop distributed applications. For example, programs with complex calculation methods can be placed on other servers. The main server only needs to call them, and the actual calculations are performed on other servers. Finally, the calculation results are returned to the main server, which reduces the burden on the main server and improves efficiency (but there are also other overheads). RMI Network Model At the initial design stage, what we really wanted was a mechanism where client programmers could make method calls in a regular way without having to worry about sending data to the network or parsing responses. So we have the following network model: install a proxy for the remote object on the client. The proxy is an object located in the client virtual machine that appears to the client program as the remote object to be accessed. When the client calls this proxy, it only needs to make a regular method call. The client proxy is responsible for using the network protocol to contact the server. Now the question is how do agents communicate with each other? There are usually three ways: 1. CORBA: Through the object request broker architecture, it supports method calls between objects written in any programming language. 2. SOAP 3. RMI: JAVA's remote method invocation technology, which supports method invocations between Java distributed objects. CORBA and SOAP are completely language independent and can be written in C, C++, and JAVA, while RMI is only applicable to JAVA. How RMI works 1. Terminology 1. Stub: When a client calls a method of a remote object, it actually calls a normal method on the proxy object, which we call a stub. The stub is located on the client machine, not on the server. 2. Parameter marshalling: The stub will pack the parameters required by the remote method into a group of bytes. The process of encoding parameters is called parameter marshalling. The purpose of parameter marshalling is to convert the parameters into a format suitable for transmission between virtual machines. In the RMI protocol, objects are encoded using a serialization mechanism. 2. Programming Model To introduce the RMI programming model, I will write a demo below. The remote object represents a warehouse, and the client program asks the warehouse for the price of a product. 1. Interface definition The capabilities of a remote object are expressed by an interface that is shared between the client and the server: The interface of the remote object must extend the Remote interface, which is located in the java.rmi package. All methods in the interface must declare that they throw RemoteException. This is because remote methods always have the possibility of failure, so the Java programming language requires that each remote method call must capture RemoteException and specify the corresponding processing operations that should be performed when the call is unsuccessful. 2. Interface implementation You can tell that this class is the target of a remote method call because it extends UnicastRemoteObject, whose constructor makes its objects accessible remotely. 3. RMI Registry: Publishing RMI Services via JNDI
For example: rmi://regserver.mycompany.cmo:99/central_warehouse If we publish the RMI service locally, the host is "localhost". In addition, the default port number of RMI is "1099". Of course, we can set it ourselves as long as it does not overlap with other ports. Service is actually a unique service name based on the same host and port. Publish the RMI service: Running results:
4. Calling RMI service Running results:
5. Let's take a look at the network diagram of RMI:
Limitations of RMI
|
<<: Actual measurement: The truth about 5G high-speed downloading: monopoly, speed limit and lies
>>: In the 5G era, will WiFi be eliminated or become more powerful?
When I was a kid, there was always a big yellow d...
5G is an important direction for the upgrade of t...
A quick note: the Wi-Fi that all of our connected...
OneTechCloud is a Chinese hosting company founded...
Exploring new paths for industrial development [[...
[[419923]] With the rise of microservice architec...
1. About TCP retransmission TCP retransmission is...
bgpto is a brand of klayer (started in 2011). The...
HUAWEI CONNECT 2017 opened on September 5 at the ...
Continuing from the previous article "Learn ...
Recently, Shenzhen Metro Futian Hub became the fi...
[[415610]] Cloud and virtualization Cloud computi...
Commercial Wi-Fi is a wireless Internet service p...
EtherNetservers is a foreign hosting company esta...
We have shared information about RAKsmart cloud s...