例如,
<mbean code="org.jnp.server.NamingBeanImpl"
name="jboss:service=NamingBeanImpl"
xmbean-dd="resource:xmdesc/NamingBean-xmbean.xml">
</mbean>
答案 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描述符的示例。