47 lines
1.8 KiB
Java
47 lines
1.8 KiB
Java
|
import java.lang.management.ManagementFactory;
|
||
|
import java.net.BindException;
|
||
|
import java.nio.charset.Charset;
|
||
|
import java.nio.file.FileSystem;
|
||
|
import java.nio.file.FileSystems;
|
||
|
import java.nio.file.Files;
|
||
|
import java.nio.file.Path;
|
||
|
import java.nio.file.StandardOpenOption;
|
||
|
import java.rmi.registry.LocateRegistry;
|
||
|
import java.rmi.server.ExportException;
|
||
|
import java.util.Random;
|
||
|
import javax.management.MBeanServer;
|
||
|
import javax.management.ObjectName;
|
||
|
import javax.management.remote.JMXConnectorServer;
|
||
|
import javax.management.remote.JMXConnectorServerFactory;
|
||
|
import javax.management.remote.JMXServiceURL;
|
||
|
|
||
|
public class Server {
|
||
|
public static void main(String[] argv) throws Exception {
|
||
|
int serverPort = 12345;
|
||
|
ObjectName name = new ObjectName("test", "foo", "bar");
|
||
|
MBeanServer jmxServer = ManagementFactory.getPlatformMBeanServer();
|
||
|
SteMBean bean = new Ste();
|
||
|
jmxServer.registerMBean(bean, name);
|
||
|
boolean exported = false;
|
||
|
Random rnd = new Random(System.currentTimeMillis());
|
||
|
do {
|
||
|
try {
|
||
|
LocateRegistry.createRegistry(serverPort);
|
||
|
exported = true;
|
||
|
} catch (ExportException ee) {
|
||
|
if (ee.getCause() instanceof BindException) {
|
||
|
serverPort = rnd.nextInt(10000) + 4096;
|
||
|
} else {
|
||
|
throw ee;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
} while (!exported);
|
||
|
JMXServiceURL serverUrl = new JMXServiceURL("service:jmx:rmi:///jndi/rmi://localhost:" + serverPort + "/test");
|
||
|
JMXConnectorServer jmxConnector = JMXConnectorServerFactory.newJMXConnectorServer(serverUrl, null, jmxServer);
|
||
|
jmxConnector.start();
|
||
|
System.out.println(serverUrl);
|
||
|
System.err.println("server listening on " + serverUrl);
|
||
|
}
|
||
|
}
|