我有一个带有复选框输入的表单:
<form:input id="garder_${indice}" path="mesFormulaires[${indice}].garder"
type="text" name="garder_${indice}" />
如果在Java中选中或不选中复选框,我想知道。如何使用带有名为“garder”的布尔值的getter / setter。我希望Java方法可以实现,但我不了解它们。
答案 0 :(得分:1)
如果您使用的是Spring MVC,我建议您使用form:checkbox
标记并将其绑定到表单modelAttribute
对象的属性。
public class YourModelAttribute{
private boolan checkBoxProp;
// other props
// getter and setter for your props
}
然后在你的页面中:
<form:checkbox id="ckbId" path="checkBoxProp" />
请务必将表单的modelAttribute
设置为YourModelAttribute
的实例。