如何在 jboss 上部署带注释的 MBean?
我正在使用带注释的 pojo-MBean。但部署后 mbean 不会出现在 jmx-console 中。我相信通过注释,不需要使用 jboss-service.xml 。 有人可以解释一下我可能会错过什么吗?
我使用的是 jboss 5.1 版本,我的 mbean 看起来像这样 -
@Service(objectName = Statistics.ManagementJNDIName)
@Depends({ Statistics.MSEJNDIName })
public class StatisticsImplMBean {
....
}
I am using an annotated pojo-MBean. But the mbean does not come up in the jmx-console after deployment. I believe that with annotations, usage of jboss-service.xml is not required.
Could someone explain as to what I could probably be missing?
I am using version jboss 5.1 and my mbean looks something like this -
@Service(objectName = Statistics.ManagementJNDIName)
@Depends({ Statistics.MSEJNDIName })
public class StatisticsImplMBean {
....
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否为 MBean 定义了 @Management 接口?
例子:
Have you defined a @Management interface for your MBean?
Example: