Description for Standard MBean
问题 I want to make my Standard MBean verbose in JBoss jmx-console. DynamicMBean has getMBeanInfo() to do it. Method return MBeanInfo with description of MBean. But how I can to do the same thing for Standard MBean? E.g. I have following MBean interface: public interface MyMBean { String f(); } ... with following implementation: public class My implements MyMBean { public String f() { return "test"; } } What should be done to add description in such example? Thanks 回答1: For StandardMBeans there is