fileBasedQueueLocation

fileBasedQueueLocation

我对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;"/>

09-09 17:29