为什么struts 1.0将空字符串转换为0L?

发布于 2024-11-03 13:09:54 字数 494 浏览 2 评论 0原文

我有一个表单:

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 技术交流群。

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

发布评论

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

评论(1

水晶透心 2024-11-10 13:09:55

Struts ActionForm 和 DynaActionForm 文档明确指定。

如果您不提供初始
属性,数字将被初始化
为 0,对象为 null。

我知道您使用的是 Long 但(即使在自动装箱之前)以下数据类型已“装箱”。

  • Integer/int
  • Double/double
  • Long/long
  • Float/float
  • Boolean/boolean
  • Short/short

当 Struts 看到 Number 对象子类型(而不是其基本类型)时,它会为您自动装箱,因此您有一个默认值为0。它有自己的基元/对象类型转换实现(在 BeanUtils 中)。这样做的原因是为了向后兼容旧的 Struts 1 版本(在 JDK 1.4 和 JDK 1.3 上运行)。

我希望这有帮助。

Struts ActionForm and DynaActionForm documentations clearly specifies.

If you do not supply an initial
attribute, numbers will be initialized
to 0 and objects to null.

I know you're using a Long but (even since before Autoboxing) the following data types are "boxed".

  • Integer/int
  • Double/double
  • Long/long
  • Float/float
  • Boolean/boolean
  • Short/short

When Struts sees an Number object subtype, instead of its primitive type, it autoboxes it for you, hence why you have a default value of 0. It has its own implementation of the primitive/object type conversion (in BeanUtils). 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.

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