使用 BeanUtils.copyProperties 时如何维护数值为 null?

发布于 2024-07-24 23:00:18 字数 661 浏览 3 评论 0原文

我有一个允许空值的数字数据库字段(SQL Server 2000 中的数字(3)),而空值是我首选的“无值”值。

该字段映射到 Hibernate 中的非原始 java Long 类:

该字段在我的 struts 表单和 bean 中都设置为 java.lang.Long 。 首次创建 Struts 表单时,我已验证该属性返回 null。 当创建 bean(从数据库中提取)时,我已验证该属性返回 null。 但是,在使用 BeanUtils.copyProperties() 预填充 Struts 表单中的 bean 值后,该属性返回 0,如果我继续并保存表单,数据库将具有 0 值。

我是否使用了错误的类型或类型组合(在数据库和/或 Hibernate/Java 中)来维护数字字段的空值? 我应该将数字 sql 类型映射到不同的 Java 类(例如 BigDecimal)吗? 在研究中,我发现提到了 Converter 类。 我是否需要创建这样一个类来帮助 BeanUtils 正确维护 null 值?

I have a numeric database field (numeric(3) in SQL Server 2000) that allows nulls, and null is my preferred "no value" value.

That field is mapped to the non-primitive java Long class in Hibernate:

<property column="my_column" name="my_column" type="java.lang.Long" not-null="false" />

The field is set as java.lang.Long in both my struts form and bean. When the Struts form is first created, I've verified that the property returns null. When the bean is created (pulled from the database), I've verified that the property returns null. However, after using BeanUtils.copyProperties() to prefill the Struts form with the bean values, the property then returns 0, and if I continue and save the form the database will have the 0 value.

Am I using the wrong types or combination of types (in database and/or Hibernate/Java) to maintain a null value for a numeric field? Should I map the numeric sql type to a different Java class like BigDecimal? In researching, I've found mention of a Converter class. Do I need to create such a class to help BeanUtils properly maintain null values?

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

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

发布评论

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

评论(2

停顿的约定 2024-07-31 23:00:19

您需要在 BeanUtils 中注册一个带有 null 的 LongConverter 作为默认值。

ConvertUtils.register(new LongConverter(null), Long.class); 

You need to register a LongConverter with null for a default value in BeanUtils.

ConvertUtils.register(new LongConverter(null), Long.class); 
小梨窩很甜 2024-07-31 23:00:19

在 web.xml 中使用下面的代码

<init-param>
      <param-name>convertNull</param-name>
      <param-value>true</param-value>
</init-param>

因此这会将默认的 0 转换为 null。

In web.xml use below code

<init-param>
      <param-name>convertNull</param-name>
      <param-value>true</param-value>
</init-param>

So this converts the default 0 to null.

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