Struts2中的tiles.xml中是否可以有动态值

发布于 2024-12-07 09:34:46 字数 105 浏览 1 评论 0原文

是否可以像在 Struts2 中的 struts.xml 中那样在tiles.xml 中传递动态值?我已经使用 ${parameter} 来获取配置文件中的动态值,但它似乎不起作用。有什么想法吗?

Is it possible to pass dynamic values in tiles.xml as we do in struts.xml in Struts2? I have used ${parameter} to get dynamic values in config file but it doesnt seem to work. Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

—━☆沉默づ 2024-12-14 09:34:46

您可以将通配符从 struts 操作传递给图块,我使用它为动态项目执行类似的操作,例如每个客户端可能有不同的 CSS 文件。

在你的 struts 操作中,你将有一个tiles结果类型,你可以传递如下值:

<action name="{eventURL}/update" class="org.groundworkgroup.struts.actions.admin.UpdateEventSettings">
    <result name="login" type="tiles">/login.tiles</result>
    <result name="input" type="tiles">/admin.${#session.bean.pageID}.${#session.bean.fileID}.tiles</result>
    <result name="success" type="tiles">/admin.${#session.bean.pageID}.${#session.bean.fileID}.tiles</result>
</action>

然后在你的tiles.xml中,你将“插入”通配符:

<definition name="/admin.*.*.tiles" extends="adminLayout">
    <put-attribute name="title" value="Welcome" />
    <put-attribute name="jsfile" value="{1}/js/{2}.js" />
    <put-attribute name="cssfile" value="{1}/css/{2}.css" />
    <put-attribute name="body" value="/WEB-INF/content/sites/admin/main.jsp" />
    <put-attribute name="menu" value="/WEB-INF/content/sites/admin/menu.jsp" />
</definition>

在这个特定的例子中,struts操作pageID是项目目录,其中文件位于tiles.xml 中,并作为通配符{1} 放置。 fileID 是与此特定操作或在tiles.xml 中用{2} 表示的用户关联的文件名。您可以使用此设置将动态值传递到图块,以便控制例如页面状态或 JSP 的渲染或像本示例中的自定义 css 和 js 文件。

You can pass wildcards to tiles from your struts actions, I've used this to do similar things for dynamic projects where each client might have a different CSS file for instance.

In your struts action you would have a tiles result type and you can pass the value such as:

<action name="{eventURL}/update" class="org.groundworkgroup.struts.actions.admin.UpdateEventSettings">
    <result name="login" type="tiles">/login.tiles</result>
    <result name="input" type="tiles">/admin.${#session.bean.pageID}.${#session.bean.fileID}.tiles</result>
    <result name="success" type="tiles">/admin.${#session.bean.pageID}.${#session.bean.fileID}.tiles</result>
</action>

And then in your tiles.xml you would "plug in" the wildcards:

<definition name="/admin.*.*.tiles" extends="adminLayout">
    <put-attribute name="title" value="Welcome" />
    <put-attribute name="jsfile" value="{1}/js/{2}.js" />
    <put-attribute name="cssfile" value="{1}/css/{2}.css" />
    <put-attribute name="body" value="/WEB-INF/content/sites/admin/main.jsp" />
    <put-attribute name="menu" value="/WEB-INF/content/sites/admin/menu.jsp" />
</definition>

In this particular example the struts action pageID is the project directory where the files are located and in the tiles.xml it is placed as wildcard {1}. The fileID is the filename associated with this particular action or user represented in the tiles.xml by {2}. You can use this set up to pass dynamic values to your tiles in order to control for example page states or JSP's to render or like in this example, custom css and js files.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文