springmvc controller里面怎样得到页面的表单user属性?

cotroller里面是这样:
public String addIndexImg(ModelMap modelMap,@RequestParam(value = "card", required = false) Card card)
jsp页面:
<form action="<%=path%>/OldAreaInfom.action?
<input type="text" name="card.id"/>
<input type="text" name="card.name"/>
</form>
实体对象那些都有,代码是没有写错的,但为什么controller里card对象始终为null?

第1个回答  2013-09-06
<form action="<%=path%>/OldAreaInfom.action">
<input type="text" name="id"/>
<input type="text" name="name"/>
</form>
这样写~
相似回答
大家正在搜