I have a jsp in which I use spring s:message tag
<s:message code="application.success" arguments="${applicationRefId}" />
applicationRefId is a long variable added to the model.
In my resource bundle, I have defined message code quite regularly as
application.success=Application {0} successfully submitted
But this results in
Application 74,311 successfully submitted
Here my long value is formatted with commas. I have two questions - Why does this formatting happen, by default, and how can I prevent it?