I'm using spring mvc and I have a problem with <spring:message />
tag.
In properties file I have line:
label.inquiry=Inquiry
but when I use it in <spring:message code="label.inquiry" />
the output is:
Inquiry
One new line character and few spaces. Why and how to resolve this problem?
UPDATE:
I paste an some jsp code
<div style="clear:both;margin:5px;">
<a class="btn mini inquiryFile" href="<c:url value="/download/brokerinquiry.html?ciid=${element.brokerInquiryElement.customerInquiryElement.customerInquiry.id}&sid=${element.brokerInquiryElement.supplier.id}"/>">
<spring:message htmlEscape="false" code="label.inquiry"/> <i class="icon-download"></i>
</a>
</div>