No configuration found for the specified action警告
测试网页时出现No configuration found for the specified action: 'deptAction.action' in namespace: ''. Form action defaulting to 'action' attribute's literal value.的警告信息。JSP代码如下:
<s:form action="deptAction.action" >
<s:textfield name="deptName" label="用户名"></s:textfield>
<s:password name="deptNo" label="密码"></s:password>
<s:submit value="确定"></s:submit>
</s:form>
解决方法:将<s:form action="deptAction.action" >
修改成<s:form action="deptAction" namespace="/myStruts2" >(myStruts2为工程名)
页:
[1]