Hello, how can I format a price property so the price 2500 displays as 2.500,00? It's Brazilian currency format that I want to use. I have understood that the tag
<bean:write name="listelement" format="#,##0.00" property="price"/>
displays the tag formatted like US currency but I want dot as the thousand separator and comma as the decimal separator.
Thanks