为什么struts 1.0将空字符串转换为0L?
我有一个表单:
public class ActionLogForm extends ActionForm {
private Long ContractId;
public Long getContractId() {
return contractId;
}
public void setContractId(Long ContractId) {
this.contractId= contractId;
}
}
在 JSP 中,我有:
<html:hidden property="contractId" styleId="contractId" value="" />
为什么我的 dao 中的 actionLogForm.getContractId()
有 0L
? 如何将默认值更改为空?
I have a form:
public class ActionLogForm extends ActionForm {
private Long ContractId;
public Long getContractId() {
return contractId;
}
public void setContractId(Long ContractId) {
this.contractId= contractId;
}
}
and in JSP, I have:
<html:hidden property="contractId" styleId="contractId" value="" />
Why actionLogForm.getContractId()
in my dao have 0L
?
How can I change default with this to null?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Struts ActionForm 和 DynaActionForm 文档明确指定。
我知道您使用的是
Long
但(即使在自动装箱之前)以下数据类型已“装箱”。当 Struts 看到
Number
对象子类型(而不是其基本类型)时,它会为您自动装箱,因此您有一个默认值为0
。它有自己的基元/对象类型转换实现(在 BeanUtils 中)。这样做的原因是为了向后兼容旧的 Struts 1 版本(在 JDK 1.4 和 JDK 1.3 上运行)。我希望这有帮助。
Struts ActionForm and DynaActionForm documentations clearly specifies.
I know you're using a
Long
but (even since before Autoboxing) the following data types are "boxed".When Struts sees an
Number
object subtype, instead of its primitive type, it autoboxes it for you, hence why you have a default value of0
. It has its own implementation of the primitive/object type conversion (inBeanUtils
). The reason for it, is for backward compatibility with the older Struts 1 versions (which ran on JDK 1.4 and JDK 1.3).I hope this helps.