Dozer:原始 int -1 值到 null 对象映射

发布于 2024-07-14 10:29:16 字数 169 浏览 9 评论 0原文

有没有办法通过其 xml 映射文件配置 dozer,将原始 int 字段值 -1 转换为空对象引用?

旧对象模型默认该值为 -1,因此零可以是有效选择。

我们映射到的较新的对象模型假设未选择的值将为空,并且任何初始化的对象值都是有效的。 我希望避免需要为这种情况编写自定义转换器。

Is there a way to configure dozer via its xml mapping file to convert a primitive int field value of -1 to a null object reference?

The legacy object model defaults the value to -1, so that zero can be a valid selection.

The newer object model we are mapping to, assumes that non-selected values will be null, and that any initialized object value is valid. I'm hoping to avoid the need to write a custom converter for this case.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

瀟灑尐姊 2024-07-21 10:29:16

您可能已经知道了,但我能看到的唯一解决方案是......

  1. 为其编写一个自定义转换器。
  2. 或者,编写目标属性的自定义设置器(在新对象模型中),它将处理 -1 -> 。 空翻译。
  3. 或者,编写源属性的自定义 getter(在旧对象模型中),它将处理 -1 -> 。 空翻译。

2 和 3 比 1 稍差一些,因为它们用新值处理污染了旧代码,或者用旧值处理污染了新代码。

You probably already know it, but the only solutions I can see are, either...

  1. To write a custom converter for it.
  2. Or, to write a custom setter of the destination property (in the new object model), which would take care of the -1 -> null translation.
  3. Or, to write a custom getter of the source property (in the old object model), which would take care of the -1 -> null translation.

2 and 3 are a bit worse than 1, because they pollute the old code with new values handling or the new code with old values handling.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文