我对jive和freemarker还是陌生的
我尝试了像在struts中一样的方法
<input size=40 name="bvProperties.fileBasedQueueLocation"
type="text" value="${badgeVilleProperties.fileBasedQueueLocation!''}" style="float: right;"/>
需要在
fileBasedQueueLocation
bean中可用的bvProperties
变量的设置值。我还为
bvProperties
创建了setter以及getter方法。 最佳答案
您应该尝试的语法:
<input size=40 name="bvProperties.fileBasedQueueLocation"
type="text" value="${(badgeVilleProperties.fileBasedQueueLocation)!}" style="float: right;"/>