使用 Spring @ManagedNotification 注解生成 JMX 通知的任何示例
我环顾四周,没有找到任何使用 spring 注解生成 JMX 通知的示例。我找到了使用 @ManagedAttribute 和 @ManagedOperation 的示例。
谢谢 -账单
I've been looking around and haven't found any examples of using spring annotations to generate JMX notifications. I have found examples using @ManagedAttribute and @ManagedOperation.
Thanks
-Bill
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
开始吧:
在 Spring 配置文件中,您必须使用如下内容:
然后您可以使用 JConsole 访问上述 bean,并使用
trigger()
操作触发通知。请务必订阅通知。 :)Here you go:
And in your Spring configuration file you must use something like this:
You can then access above bean with JConsole and trigger notifications with the operation
trigger()
. Be sure to subscribe to the notifications. :)您还可以使用 @ManagedNotifications 注释将通知详细信息(通知元数据)添加到公开的 JMX MBean。
在 JMXDemo 类上应用以下注释以及 @ManagedResource 注释
以上详细信息将在 JConsole 通知详细信息选项下显示通知详细信息。
You can add notification details (Notification MetaData) to the exposed JMX MBean as well using @ManagedNotifications annotation.
Apply bellow annotation on Class JMXDemo along with @ManagedResource annotation
Above details will show the notification details under JConsole Notification details option.