@ModelAttribute
annotation(Spring) 允许 html 创建一个对象。
例如有一个类
class Vasya{
int id;
String name;
//set get
}
和html表单
<form action='path'>
<input type='text' name = 'id'/>
<input type='text' name = 'name'/>
<input type='submit'/>
</form>
@controller
方法:
@RequestMapping("/path")
public String processSkill( @ModelAttribute Vasya vasya) {...}
在这里有效。
问题:如何使用 * checkbox *es 为我的控制器方法工作的 id 和名称编写 html 表单?