jboss-service.xml中mbean中“xmbean-dd”属性的含义是什么?

时间:2009-01-07 15:51:24

标签: jboss jmx

例如,

   <mbean code="org.jnp.server.NamingBeanImpl" 
          name="jboss:service=NamingBeanImpl" 
          xmbean-dd="resource:xmdesc/NamingBean-xmbean.xml">
   </mbean>

1 个答案:

答案 0 :(得分:1)

  

如果此MBean服务使用JBoss XMBean描述符来定义Model MBean管理接口,则可选的xmbean-dd属性指定XMBean资源的路径

根据文档中的3.4.2.1 The SARDeployer MBean部分。

基本上这意味着对于通常没有参数或操作描述的StandardMBean,您可以在XML文件中提供这些参数。 resource:前缀指向$SERVER/conf目录。在resource:xmdesc/中查看resource:jboss-service.xml有关MBean描述符的示例。