我有一个表格:
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="" />
为什么actionLogForm.getContractId()
在我身上有0L
?如何将默认值更改为 null?