如何在jive中从ftl设置java bean的值

时间:2015-07-28 11:39:00

标签: java struts2 struts freemarker jive

我是jive和freemarker的新手

我尝试过像struts一样的方法

<input size=40 name="bvProperties.fileBasedQueueLocation" 
            type="text" value="${badgeVilleProperties.fileBasedQueueLocation!''}" style="float: right;"/>

需要fileBasedQueueLocation bean中可用的bvProperties变量的设置值。

我还为bvProperties创建了setter和getter方法。

1 个答案:

答案 0 :(得分:1)

你应该尝试的语法:

<input size=40 name="bvProperties.fileBasedQueueLocation" 
            type="text" value="${(badgeVilleProperties.fileBasedQueueLocation)!}" style="float: right;"/>