Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 RHQ JMX 插件来获取一个自定义 Mbean 的操作和属性。它正在工作,但我想添加更新属性值的可能性,我不能使用 setter 函数来更新它,因为它不被识别为操作。
如何更新我的插件以添加这种可能性?
如果您正在编写自己的插件,则可以将 bean 属性声明为:
在资源配置中声明一个 int MBean 属性的工作方式如下:
<resource-configuration> <c:simple-property name="MyAttributeName" type="integer"/> </resource-configuration>