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?
getcontractIdor is itgetContractId?