Using spring:message to define form tag attribute in Spring web application Using spring:message to define form tag attribute in Spring web application xml xml

Using spring:message to define form tag attribute in Spring web application


Use <spring:message> to store the value in a var, then reference that var using EL, e.g.

<spring:message code="general.submit" var="submitText"/><input type="submit" name="login" value="${submitText}" />