通过 MXBeans 收集
我需要定义并实现一个 MXBean 接口。其中一种方法将返回一个集合。 MXBeans 似乎不支持这一点。我收到一个 OpenDataException 消息“无法转换类型:java.util.Collection”。如果我将其更改为“列表”或“设置”,那么它就可以工作。
我没有找到任何文档说不支持集合,这就是我向各位专家询问的原因。我错过了什么吗?
I need to define and implement an MXBean interface. One of the methods would return a Collection. This seems to be not supported by MXBeans. I get an OpenDataException saying "Cannot convert type: java.util.Collection". If I change it to List or Set then it works.
I have not found any documentation saying that Collections are not supported and this is why I am asking you experts. Do I miss something ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
MXBean 注释的 javadoc 中描述详细说明映射规则。支持 List、Set、SortedSet,但不支持 Collection。
The javadoc of the MXBean annotation describes in detail the mapping rules. List, Set, SortedSet are supported but not Collection.
规范没有说它支持 Java 集合:
您可以使用数组或 TabularData。
Specification does not say it supports Java collections:
You can use either arrays or TabularData.