Sounds like you need to register a CustomDateEditor during the initial binding phase of your form-backing object. If your controllers are annotation-based it would look something like this:
Code:
@InitBinder
protected void initBinder(WebDataBinder binder) {
SimpleDateFormat format = new SimpleDateFormat("MM/dd/yyyy");
binder.registerCustomEditor(Date.class, new CustomDateEditor(format, true));
}
Refer to http://static.springsource.org/sprin...alidation.html for clarification on the use of custom property editors.
http://static.springsource.org/sprin...ateEditor.html should point you in the right direction for CustomDateEditor usage.