xmlbean:处理 int 和缺失元素
当将 POJO 与 xmlbean 绑定时,如果缺少通常带有 int 的标记,则会将其映射为 0。 我知道 adbean 会将其映射为 Integer.MIN_VALUE。 xmlbean 是否有这种可能性或其他任何情况?
谢谢,
大卫
When binding a POJO with xmlbean, if a tag, normally with an int, is missing, it is mapped with 0.
I know that adbean would map it with Integer.MIN_VALUE. Is there a such possibility or anything else with xmlbean ?
Thanks,
David
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果可以的话,更改 WSDl :放置一个 Integer,而不是 int
If you can, change the WSDl : put an Integer, not int
我不完全确定我理解这个问题,但您可以使用
.isSetFoo()
来检查 foo 元素是否存在于 xml 文档中。I'm not totally sure I understand the question, but you can use
.isSetFoo()
to check if the foo element is present in the xml document.