open class MBeanServerConnectionFactoryBean : FactoryBean<MBeanServerConnection>, BeanClassLoaderAware, InitializingBean, DisposableBean
FactoryBean that creates a JMX 1.2 MBeanServerConnection to a remote MBeanServer exposed via a JMXServerConnector. Exposes the MBeanServer for bean references.
Author
Rob Harrop
Author
Juergen Hoeller
Since
1.2
See Also
MBeanServerFactoryBeanConnectorServerFactoryBeanorg.springframework.jmx.access.MBeanClientInterceptor#setServerorg.springframework.jmx.access.NotificationListenerRegistrar#setServer
MBeanServerConnectionFactoryBean()
FactoryBean that creates a JMX 1.2 |
open fun afterPropertiesSet(): Unit
Creates a |
|
open fun destroy(): Unit
Closes the underlying |
|
open fun getObject(): MBeanServerConnection |
|
open fun getObjectType(): Class<out MBeanServerConnection> |
|
open fun isSingleton(): Boolean |
|
open fun setBeanClassLoader(classLoader: ClassLoader): Unit |
|
open fun setConnectOnStartup(connectOnStartup: Boolean): Unit
Set whether to connect to the server on startup. Default is "true". Can be turned off to allow for late start of the JMX server. In this case, the JMX connector will be fetched on first access. |
|
open fun setEnvironment(environment: Properties): Unit
Set the environment properties used to construct the |
|
open fun setEnvironmentMap(environment: MutableMap<String, *>): Unit
Set the environment properties used to construct the |
|
open fun setServiceUrl(url: String): Unit
Set the service URL of the remote |