@MXBean annotation works improperly in the following simplest cases.
1. @MXBean/@MXBean(true)
@MXBean
public interface AccessInterface {}
public class MXBC_SimpleTrue implements AccessInterface {}
The attempt to register this MXBean in MBeanServer throws NotCompliantMBeanException.
2. @MXBean(false)
@MXBean(false)
public interface MXBNC_SimpleMXBean {}
public class MXBNC_SimpleFalse implements MXBNC_SimpleMXBean {}
This is registered perfectly in MBeanServer, after what returned MBeanInfo for this bean
contains field "mxbean=true".
1. @MXBean/@MXBean(true)
@MXBean
public interface AccessInterface {}
public class MXBC_SimpleTrue implements AccessInterface {}
The attempt to register this MXBean in MBeanServer throws NotCompliantMBeanException.
2. @MXBean(false)
@MXBean(false)
public interface MXBNC_SimpleMXBean {}
public class MXBNC_SimpleFalse implements MXBNC_SimpleMXBean {}
This is registered perfectly in MBeanServer, after what returned MBeanInfo for this bean
contains field "mxbean=true".