RMI refers to Remote Method Invocation. It is a mechanism that allows an object on a Java virtual machine to call a method on an object in another Java virtual machine. Any object that can be called with this method must implement the remote interface.

When calling such an object, its parameter is "marshalled" and sends it from the local virtual machine to a remote virtual machine (the remote virtual machine's parameter is "unmarshalled" )superior. When the method terminates, the results from the remote machine are marshalled and sent to the caller's virtual machine. If a method call results in an exception being thrown, that exception will be indicated to the caller.
When providing remote access, we first need to define what the remote end can access. In Java, defining this type of interface requires implementing the Remote interface
public interface Business extends Remote{
public String echo(String msg) throws RemoteException;
}
After defining the interface, these functions We need to implement it ourselves on the server side. Therefore, we declare a class to implement the interface we provide.
public class BusinessImpl implements Business{
@Override
public String echo(String msg) throws RemoteException {
if("quit".equalsIgnoreCase(msg)) {
System.out.println("Server will be shutdown");
System.exit(0);
}
System.out.println("Message from client:"+msg);
return "Server response:"+msg;
}
}
After implementing this method, one question is how to run it. Since it is remote access, there must be a port number and an instance, so we also need to register our code
public class Server {
public static final String SERVER_REGISTER_NAME = "BusineeDemo";
public static void main(String[] args) throws RemoteException {
int port = 2016;
Business business = new BusinessImpl();
UnicastRemoteObject.exportObject(business,port);
Registry registry = LocateRegistry.createRegistry(1099);
registry.rebind(SERVER_REGISTER_NAME, business);
}
} There are two Java classes: UnicastRemoteObject and LocateRegistry
One interface: Registry
Registry interface: Provides a remote interface for simple remote objects Used to store and obtain references to remote objects, which are obtained through arbitrary String type variable names. The bind, unbind, and rebind methods are used to change the registered names. The lookup and list methods are used to query the current Already bound object.
UnicastRemoteObject class: used to export a remote object
LocateRegistry class: an auxiliary class program used to obtain a reference to a remote calling object, mainly to build a remote object on a specific IP Remote object to accept callbacks from a specific port.
The simple server is completed, now let’s look at the client:
The client code is even simpler. We mentioned earlier that we can use the Registry’s lookup method. Get the currently bound service, so naturally, we first need to get this Registry
public class Client {
public static void main(String[] args) throws RemoteException, NotBoundException {
// Registry registry = LocateRegistry.getRegistry("localhost");
Registry registry = LocateRegistry.getRegistry("localhost", 1099);
Business business = (Business) registry.lookup(Server.SERVER_REGISTER_NAME);
System.out.println(business.echo("Hello Server"));
}
}The above is the detailed content of How to write an rmi in java. For more information, please follow other related articles on the PHP Chinese website!
How to convert names to numbers to implement sorting within groups?Apr 19, 2025 pm 01:57 PMHow to convert names to numbers to implement sorting within groups? When sorting users in groups, it is often necessary to convert the user's name into numbers so that it can be different...
In Java remote debugging, how to correctly obtain constant values on remote servers?Apr 19, 2025 pm 01:54 PMQuestions and Answers about constant acquisition in Java Remote Debugging When using Java for remote debugging, many developers may encounter some difficult phenomena. It...
In back-end development, how to distinguish the responsibilities of the service layer and the dao layer?Apr 19, 2025 pm 01:51 PMDiscussing the hierarchical architecture in back-end development. In back-end development, hierarchical architecture is a common design pattern, usually including controller, service and dao three layers...


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

WebStorm Mac version
Useful JavaScript development tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.







