Hyperjaxb 动态应用瞬态
目前,我可以指示 Hyberjaxb 使用瞬态功能在编译时不要将节点保留在 xml 对象中。无论如何,是否可以在运行时动态应用它?如果x=y
,则持久化xml对象中的特定节点,否则不持久化。
是否还有其他策略来解决这个问题?
Currently, I can instruct Hyberjaxb to not persist a node in a xml object at compile time using the transient functionality. Is there anyway of applying this dynamically at runtime? If x=y
, then persist particular node in xml object, otherwise do not persist.
Is there perhaps another strategy to deal with this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这不是 Hyperjaxb 的任务,因为 HJ 主要是一个编译时工具。仅对运行时影响非常有限。
制作对象结构的深层复制然后删除您不想编组的内容是否足够?您可以使用诸如 可复制插件 之类的东西来生成漂亮的复制/克隆方法,甚至使用自定义复制策略。
I don't think this is a task for Hyperjaxb, since HJ is primarily a compile-time tool. There's a very limited runtime impact only.
Would it be enought to make a deep-copy of the object structure and then remove what you dont' want to be marshalled? You can use something like copyable plugin to generate nice copy/clone methods or even use a custom copy strategy.