Java / JMX
Define MBean in JMX.
A MBean is a managed Java object, similar to a JavaBeans, that follows the design patterns mentioned in the JMX specification. An MBean can represent a device, an application, or any resource that needs to be managed.
The JMX specification defines 5 types of MBean:
- Standard MBeans,
- Dynamic MBeans,
- Open MBeans,
- Model MBeans,
- and MXBeans.
More Related questions...