I am using spring-webflow 1.1. My form object contains Date.class.
So I add correct editor
public class FrontPageEditor extends FormAction {
@Override
protected void initBinder(RequestContext context, DataBinder binder) {
DateFormat df = new SimpleDateFormat("dd/MM/yyyy");
CustomDateEditor editor = new CustomDateEditor(df, false);
binder.registerCustomEditor(Date.class, editor);
}
//this code works fine and FrontPageData contains valid Date objects
public Event saveEntry(RequestContext context) throws Exception {
bindAndValidate(context);
FrontPageData data = getCurrent(context);
service.save(data);
return success();
}
But when I show date field on JSP it look like "Tue Aug 23 13:24:07 EEST 2011" i.e. default date format. JSP Code
<form:form commandName="data">
...
<form:input cssClass="date" path="durationStartDate"/>
...
</form:form>