In the page "login.jsp", the value of the variable "title" cannot be transferred to the title tag in the "default.jsp" page, more specifically the code "arguments". When I visit the login url, the page's title is actually "{0} - CompanyName". That's incorrect, it should be "Login - CompanyName". Please help.
----layout/tiles.xml----
<tiles-definitions>
<definition name="default" template="/WEB-INF/views/layout/default.jsp">
<put-attribute name="header" value="/WEB-INF/views/layout/header.jsp" />
<put-attribute name="footer" value="/WEB-INF/views/layout/footer.jsp" />
</definition>
</tiles-definitions>
----users/tiles.xml----
<tiles-definitions>
<definition extends="default" name="users/login">
<put-attribute name="body" value="/WEB-INF/views/users/login.jsp" />
</definition>
</tiles-definitions>
----layout/default.jsp----
<head>
<title><spring:message code="title" arguments="${title}" />
</title>
</head>
<body>
<tiles:insertAttribute name="header" ignore="true" />
<tiles:insertAttribute name="body" />
<tiles:insertAttribute name="footer" ignore="true" />
</body>
----users/login.jsp----
<spring:message code="title.login" var="title" />
----layout.properties----
title = {0} - CompanyName
title.login = Login