가장먼저 제일 우측에
rmregistry 를 실행한다.
새로운 cmd창을 뛰운다.
server 실행
import java.rmi.*;
import java.rmi.server.*;
interface RSInterface extends Remote{
public void println(String msg) throws
RemoteException;
}
class RSMain extends UnicastRemoteObject implements
RSInterface{
public RSMain() throws RemoteException{}
public static void main(String args[]) throws
Exception{
Naming.bind("rs",new RSMain());
}
public void println(String msg) throws
RemoteException{
System.out.println(msg);
}
}
클라이언트 실행
import java.rmi.*;
class RC{
public static void main(String args[]) throws
Exception{
String name="rmi://127.0.0.1/rs";
RSInterface remote=(RSInterface)Naming.lookup
(name);
remote.println("aaa");
}
}
그럼 서버에 aaa 가 찍히는걸 볼수있다.
메이븐 설정 경로 정해서 이클립스에 적용해보기 (0) | 2015.04.12 |
---|---|
오라클에 dmp 파일 import 하기, zipcode (0) | 2015.04.09 |
자바 쓰레드 Thread.yield(); 사용 (0) | 2015.04.02 |
자바 쓰레드 join() (0) | 2015.04.02 |
자바 쓰레드 , wait() , sleep(mil) , interrupt() , notifyAll()에 대해 (0) | 2015.04.02 |