I don't know if there is a question like this but I didn't find what I was looking for. This is the problem:
In my database I have a table that has a value (String) of a timestamp. (i.e. 1370842140205)
When I get that value in my <display:table>
it shows exactly like that 1370842140205.
What I want is this: 10.6.2013 5.29.00
How can i convert that String into desired date format in my .jsp file?
Thanks.
EDIT:
I tried to use this:
<display:table name="${row.rows}">
<display:column property="date" title="DATE" format="{0,date,MM.dd.yyyy HH.mm.ss}"/>
</display:table>
But it didn't work for me.