2

我是 jive 和 freemarker 的新手

我尝试了我们在 Struts 中所做的方法

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

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

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

4

1 回答 1

1

您应该尝试的语法:

<input size=40 name="bvProperties.fileBasedQueueLocation" 
            type="text" value="${(badgeVilleProperties.fileBasedQueueLocation)!}" style="float: right;"/>
于 2015-07-28T13:45:54.460 回答