Struts提交表单后报IndexOutOfBoundsException错误
jsp页面
<html:form action="/login.do?method=addItem" onsubmit="return chkReportVal();">
<input class="button" type="submit" name="Submit" value="保存" />
</html:form>
function chkReportVal(){
return true;
}
struts-config.xml
<action path="/login"
type="com.client.web.Action"
name="mainForm"
scope="request"
parameter="method">
<forward name="disp" path="/WEB-INF/pages/add/aaaaa.jsp"/>
</action>
问题出在哪里啊,怎么会连接不上Action呢??请各位帮帮我吧。。。