I have a problem with FMT and SpringMVC:
I have an object which contains a date field, so i use fmt to show it in my jsp page like this:
<fmt:formatDate value="${form.dtBegin}" type="date" pattern="dd/MM/yyyy HH:mm" />
The problem is that when i submit my page, this field “form.dtBegin” get a new Date and in my case this field should not change!!
So have you any idea for this problem?
Thanx all!
Maybe you could try binding date in your controller.