struts2表单提交问题

页面:
...
<form ...>
<input name="oneProduct.name" type="text" size="30" value="" />
</form>

后台:
Action里面有:
private Product oneProduct;

getter;setter;


Product里面有:
private String name;
默认构造方法
getter;setter;

提交表单到Action时调用oneProduct出现NullPointerException,参数没有设置到实体,查阅资料都说会自动注入到实体

求解!

作者: a20081130   发布时间: 2011-06-09

把代码贴出来看看,spring的配置文件

作者: JavaXingZi   发布时间: 2011-06-09

你action代码贴出来看一下,,
还有你Product 类有name这个属性?

作者: lee511411973   发布时间: 2011-06-09