2

私はフリーマーカーだけでなく、ジャイブも初めてです

Strutsで行ったように、次のアプローチを試みました

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

アクションで使用可能な Bean で使用可能なfileBasedQueueLocation変数の値を設定する必要があります。bvProperties

また、動作中のセッターとゲッター メソッドも作成しbvPropertiesました。

4

1 に答える 1

1

試す必要がある構文:

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