如何从 FreeMarker 模板获取表达式
我有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须在 Freemarker 执行上下文中为这些变量提供值。您可以通过在调用时传递命名值(即 Map)来完成此操作,或者您可以直接从模板内访问 java 类并从静态/工厂方法或其他方法获取值,或者您可以调用自定义 TemplateMethodModel 方法并调用他们。
例如:
在网上阅读 - 这是一个大主题。
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:
Read up on the web - it's a big subject.