Java RMI Instance

Source: Internet
Author: User

First, create a remote service

1, create the Remote interface, Myremote.java

import java.rmi.*;  Public Interface extends remote{    publicthrows  remoteexception;}

2. Realize Remote,myremoteimpl.java

Importjava.rmi.*;ImportJava.rmi.server.*; Public classMyremoteimplextendsUnicastRemoteObjectImplementsmyremote{ PublicString SayHello () {return"Server says, ' Hey '"; }     PublicMyremoteimpl ()throwsremoteexception{} Public Static voidMain (string[] args) {Try{MyRemote service=NewMyremoteimpl (); Naming.rebind ("Rmi://localhost:1099/hello", service); }Catch(Exception ex) {ex.printstacktrace (); }    }}

3, compile. In the directory where the above Java files are located, hold down the SHIFT key, right-click, and select "Open Command Window here" to execute

Javac *.java

4, using rmic to produce stubs.

Rmic Myremoteimpl

5, Start RMI registry.

Rmiregistry

6, start the remote service. Also open a command window to execute

Java Myremoteimpl

Second, the client

Continued

Resources:

1. Hae. "Large Web site technology architecture"

Java RMI Instance

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.