blob: 52e9e77bac768dbcc4ae5bc6009c6544e693456e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
package pokemon;
import java.rmi.Naming;
import java.rmi.RemoteException;
import java.rmi.registry.LocateRegistry;
import models.CONSTS;
public class Server implements Runnable {
public static void main(String[] args) {
Server server=new Server();
new Thread(server).start();
}
public Server() {
IService s;
try {
s = new Service();
System.out.println("created registry at "+CONSTS.port);
LocateRegistry.createRegistry(CONSTS.port);
Naming.rebind(CONSTS.rmiUrl, s);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
@Override
public void run() {
try {
while(true) {
Thread.sleep(500);
System.out.println("serverTest");
}
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
|