something like?
<fmt:formatDate value='${event.starttime}' type='both'/>
something like?
<fmt:formatDate value='${event.starttime}' type='both'/>
It is not possible AFAIK. You can use the pattern
attribute:
<fmt:formatDate pattern="yyyy-MM-dd'T'HH:mm:ssz" value="${event.starttime}" />
But there is not a pattern to generate ISO8601 without post-processing. You have to cook your date in the server side and show it in your view.
You might find Joda-Time library useful, as well as some blog posts like: