我是 Jive 和 Freemarker 的新手。
我尝试了以下方法,就像我们在 Struts 中所做的那样:
<input size=40 name="bvProperties.fileBasedQueueLocation"
type="text" value="${badgeVilleProperties.fileBasedQueueLocation!''}" style="float: right;"/>
需要将
fileBasedQueueLocation
变量的值设置为 bvProperties
bean,该值在操作中可用。
我还创建了一个 setter,以及
bvProperties
的 getter 方法。
您应该尝试的语法:
<input size=40 name="bvProperties.fileBasedQueueLocation"
type="text" value="${(badgeVilleProperties.fileBasedQueueLocation)!}" style="float: right;"/>