I\'m developing a Java/Spring web application. The problem I\'m currently facing is that I\'d like to have message from message.resources shown as an attribute in an HTML.
Use <spring:message> to store the value in a var, then reference that var using EL, e.g.
<spring:message>
<spring:message code="general.submit" var="submitText"/> <input type="submit" name="login" value="${submitText}" />