Spring roo项目,标头绑定
我是 spring mvc 和 spring 项目的新手。
我创建了新的 spring roo 项目。在 header.jspx 中,我注意到使用了绑定
<a href="${home}" name="${fn:escapeXml(home_label)}" title="${fn:escapeXml(home_label)}">
<img src="${banner}" />
</a>
变量 home、home_label、banner 在哪里定义?
I'm new to spring mvc and spring projects.
I've created new spring roo project. I the header.jspx I've noticed use of binding
<a href="${home}" name="${fn:escapeXml(home_label)}" title="${fn:escapeXml(home_label)}">
<img src="${banner}" />
</a>
Where are variables home, home_label, banner defined?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看上面几行:
这些变量是
和
标记导出为变量的结果。使用名为var
的属性来指定变量名称是此类情况的常见模式。如有必要,
在给定路径前面添加应用程序的上下文路径,以生成绝对路径。
从用于本地化的.properties
文件中提取具有给定密钥的消息。Look a few lines above:
These variables are results of
<spring:url>
and<spring:message>
tags exported as variables. Using attriubte namedvar
to specify variable names is a common pattern for such cases.<spring:url>
prepends the given path with application's context path if necessary in order to produce absolute path.<spring:message>
exrtacts a message with a given key from.properties
files used for localization.