Is it possible to have the following tag always display 5 decimal places?
<fmt:formatNumber type="currency" value="${number}" />
without having to change it to
<fmt:formatNumber type="currency" maxFractionDigits="5" value="${number}" />
basically I have so many of these and I want them all to change, I want 5 decimal places to be the default.