Format Spring:message argument

Viewed 30099

How can I format the arguments of my <spring:message>?

I have a message like this:

 message.myMessage=this is {0} my message {1} with {2} multiple arguments

My jsp has the following:

<spring:message code="message.myMessage" 
                arguments="<fmt:formatNumber value='${value1}' currencySymbol='$' type='currency'/>,${value2},${value3}" 
                htmlEscape="false"/>

which doesn't display value1, which is a number I would like formatted.

I am not sure I can add the fmt tag inside the argument list.

2 Answers
Related