In my spring app, I am using a properties file for strings, and the spring:message tag. I am having trouble putting spaces between the messages though. Here is an example:
<p>
<spring:message code="msg.message1" /> <spring:message code="msg.message2" />
</p>
Turns into this:
I am message1.I am message 2.
I would think that the whitespace I put between the message tags would create a space, but it doesnt. I know I can use  , but I don't want that all over my markup. Any suggestions?