코드는 아래와 같습니다.
이클립스에서는 빨간줄 간 곳이 없는데요,
MyRemoteImpl.java:4: cannot find symbol
symbol: class MyRemote
public class MyRemoteImpl extends UnicastRemoteObject implements MyRemote{
^
MyRemoteImpl.java:19: cannot find symbol
symbol : class MyRemote
location: class MyRemoteImpl
MyRemote service = new MyRemoteImpl();
^
2 errors
이러한 에러를 배출합니다.
인터넷에 돌아다니는 가이드를 토대로 작성한 건데요,
왜 이런 에러가 나는지 모르겠습니다. ㅠ
해결방안이 있을까요?
부탁드립니다!!
====================
==MyRemoteImpl.java ==
import java.rmi.;
import java.rmi.server.;
public class MyRemoteImpl extends UnicastRemoteObject implements MyRemote{
/**
*
*/
private static final long serialVersionUID = 2873137596630404215L;
public String sayHello() {
return "Server says, ‘Hey’";
}
public MyRemoteImpl () throws RemoteException{ }
public static void main (String [] args){
try{
MyRemote service = new MyRemoteImpl();
Naming.rebind("Remote Hello", service);
} catch (Exception ex){
ex.printStackTrace();
}
}
}