使用 BeanUtils.copyProperties 时如何维护数值为 null?
我有一个允许空值的数字数据库字段(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要在 BeanUtils 中注册一个带有 null 的 LongConverter 作为默认值。
You need to register a LongConverter with null for a default value in BeanUtils.
在 web.xml 中使用下面的代码
因此这会将默认的 0 转换为 null。
In web.xml use below code
So this converts the default 0 to null.