フォームはsql.dateのコントローラーに値を与えていません私は春を使用していますそして以下はフォームの私のコードです
<form:input path="regDateFrom" cssClass="txt-field-date" id="txt_reg_form" readonly="true" />
そして私のコントローラーはとしてです。
protected ModelAndView processFormSubmission(HttpServletRequest request,
HttpServletResponse response, Object command, BindException errors)
throws Exception {
String param_error = null;
VehicleSearch vehicleSampling = (VehicleSearch) command;
System.out.println(vehicleSampling.getRegDateFrom());
印刷時にnullを与える