我是jive和freemarker的新手
我尝试过像struts一样的方法
<input size=40 name="bvProperties.fileBasedQueueLocation"
type="text" value="${badgeVilleProperties.fileBasedQueueLocation!''}" style="float: right;"/>
需要fileBasedQueueLocation
bean中可用的bvProperties
变量的设置值。
我还为bvProperties
创建了setter和getter方法。
答案 0 :(得分:1)
你应该尝试的语法:
<input size=40 name="bvProperties.fileBasedQueueLocation"
type="text" value="${(badgeVilleProperties.fileBasedQueueLocation)!}" style="float: right;"/>