Freemarker - 从 java 对象渲染树类型模型
大家好 我是 Freemarker 的新手,所以不太了解它的 API。
我需要渲染对象的轮廓树。 我的平台是Spring mvc和Freemarker。 在控制器端,我有一个对象 bean,其中包含树的数据。 我需要将其传递给一些免费标记模板并创建一个表示对象模型的页面。 Objetc 模型具有有关对象中包含哪些元素的信息。 请建议我如何以及使用什么技术可以做到这一点。
Hi all
I am new to Freemarker so not much aware of its API.
I have a requirement to render outline -tree of an object.
My platform is Spring mvc and Freemarker.
On controller side, i have a object bean that contains data in for of a tree.
I need to pass this to some free marker templates and create a page that represents object model.
Objetc model has information - on what elements are in object .
Please suggest how and using what technology i can do that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Spring MVC 提供对 FreeMarker 视图的支持,允许您像使用 JSP 一样使用 FreeMarker 模板。请参阅 Javadoc< /a>.
至于大纲树,您只需为其命名即可将其传递到模型(通常是地图)中。它成为 FreeMarker 变量,您可以在模板中访问它及其所有属性。
Spring MVC provides support for FreeMarker views that allow you to use FreeMarker templates as you would JSPs. See Javadoc.
As for the outline tree, you can simply pass it into the model (which is typically a map) by giving it a name. It becomes a FreeMarker variable and you can access it and all its properties in your template.