-
Enhancement
-
Resolution: Won't Fix
-
P3
-
None
-
6
-
generic
-
generic
Add support for custom JMXConnectors in JConsole through a system property "jconsole.jmxConnectorBuilder" that takes a user-defined class that implements
a well-defined interface and returns a fully configured JMXConnector ready to
use.
The interface might look like:
public interface JMXConnectorBuilder {
public JMXConnector getJMXConnector(JMXServiceURL url,
String username,
String password);
}
Adding this to JConsole would allow customers to configure SSL factories and
authentication in a more flexible way for the out-of-the-box management and
also to support protocols other than "rmi".
This new RFE will complement the already existing one:
6229985: Allow to supply properties in the Advance tab.
We could reuse javax.management.remote.JMXConnectorProvider for this, with its single method:
JMXConnector newJMXConnector(JMXServiceURL url, Map<String,?> env)
throws IOException;
The Map would optionally contain username and password encoded in the usual way inside the jmx.remote.credentials value.
a well-defined interface and returns a fully configured JMXConnector ready to
use.
The interface might look like:
public interface JMXConnectorBuilder {
public JMXConnector getJMXConnector(JMXServiceURL url,
String username,
String password);
}
Adding this to JConsole would allow customers to configure SSL factories and
authentication in a more flexible way for the out-of-the-box management and
also to support protocols other than "rmi".
This new RFE will complement the already existing one:
6229985: Allow to supply properties in the Advance tab.
We could reuse javax.management.remote.JMXConnectorProvider for this, with its single method:
JMXConnector newJMXConnector(JMXServiceURL url, Map<String,?> env)
throws IOException;
The Map would optionally contain username and password encoded in the usual way inside the jmx.remote.credentials value.
- relates to
-
JDK-6480571 Add -classpath option to jconsole
-
- Closed
-
-
JDK-6229985 MBeans tab: Allow to supply properties in the Advanced tab.
-
- Closed
-
-
JDK-6324371 Ability to launch jconsole with an already-opened mbeanserver connection
-
- Closed
-