如何从 FreeMarker 模板获取表达式

发布于 2024-11-25 00:42:03 字数 142 浏览 0 评论 0原文

我有 FreeMarker 模板,其中包含一些表达式,例如 ${name}、${company}、${price} 等。

在我的 java 应用程序中,我必须对模板中的每个表达式名称执行列表或数组。 有什么办法可以做到吗?

谢谢你的关注。

I have FreeMarker template with some expressions like ${name}, ${company}, ${price}, etc..

In my java app I have to do list or array with every expression name what is in template.
Is there any way to do it ?

Thanks for intressting.

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

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

发布评论

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

评论(1

江湖正好 2024-12-02 00:42:03

您必须在 Freemarker 执行上下文中为这些变量提供值。您可以通过在调用时传递命名值(即 Map)来完成此操作,或者您可以直接从模板内访问 java 类并从静态/工厂方法或其他方法获取值,或者您可以调用自定义 TemplateMethodModel 方法并调用他们。

例如:

<#assign name=getNameMethod() />

在网上阅读 - 这是一个大主题。

You must provide values for these variables in the Freemarker execution context. You can do this either by passing named values (ie a Map) when you call it, or you can access java classes directly from within the template and get values from static/factory methods or whatever, or you can invoke custom TemplateMethodModel methods and invoking them.

For example:

<#assign name=getNameMethod() />

Read up on the web - it's a big subject.

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