问题描述
struts配置:<struts-config><form-beans><form-beanname="aa"type="com.li.aa"></form-bean></form-beans><global-exceptions/><global-forwards/><action-mappings><actionpath="cc"type="com.li.bb"name="aa"parameter="command"><forwardname="success"path="/Success.jsp"></forward><forwardname="fail"path="/Fail"></forward></action></action-mappings><message-resourcesparameter="com.li.ApplicationResources"/></struts-config>jsp登陆界面:<formaction="/cc.do"method="post">用户名:<inputname="username"type="text"size="15"/>密码:<inputname="password"type="password"size="15"/><inputtype="submit"value="登陆"/></form>错误:HTTPStatus404-/cc.do--------------------------------------------------------------------------------typeStatusreportmessage/cc.dodescriptionTherequestedresource(/cc.do)isnotavailable.--------------------------------------------------------------------------------ApacheTomcat/6.0.29
解决方案
解决方案二:
404错误,都要问~~~~~~~~上下文路径错了
解决方案三:
我猜测的,不知道这样行不行你试试改成path="/cc",action="cc.do",web.xml配置了*.do
解决方案四:
找不到源文件
解决方案五:
路径错误楼主仔细检查下配置
解决方案六:
配置有问题
解决方案七:
你的web.XML文件应该配置错误
解决方案八:
<actionpath="/cc"type="com.li.bb"name="aa"parameter="command">
解决方案九:
引用7楼baiyu123的回复:
<actionpath="/cc"type="com.li.bb"name="aa"parameter="command">
+1
解决方案十:
该回复于2011-03-08 13:33:22被版主删除
解决方案十一:
引用8楼xiangchyaiyan的回复:
引用7楼baiyu123的回复:<actionpath="/cc"type="com.li.bb"name="aa"parameter="command">+1
+2
解决方案十二:
<%=request.getContextPath()%>/cc.do
解决方案十三:
/cc,因为ActionServlet得到cc.do转换成/cc再和配置文件中的/cc比对。
解决方案十四:
<formaction="/cc.do"method="post">改为<formaction="cc.do?method"method="post">或<formaction="/cc"method="post">都可以的
解决方案十五:
觉得应该是web.xml的struts配置问题
解决方案:
<actionpath="/cc"type="com.li.bb"name="aa"parameter="command">