程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> struts2.0-struts2中action的路徑問題

struts2.0-struts2中action的路徑問題

編輯:編程綜合問答
struts2中action的路徑問題

頁面:

<form action="<%=basePath%>zy?cou_id=1" method="post">
<input type="submit" value="開始學習" class="ss" style="line-height:40px; font-size:26px; margin-left:20%; background-color:#0F9;"  />
</form>

配置:

<struts><package name="stu"  extends="struts-default" name="/">
<action name="zy" class="el.com.web.action.stu.StudentAction" method="findCourse">
<result name="success">student/OEStudent/stu_zy.jsp</result></action>
</package> 
</struts>

問題:
HTTP Status 404 - There is no Action mapped for namespace [/] and action name [zy] associated with context path [/e-Learning].

最佳回答:


為什麼會有兩個name呢 。。“/” namespace 默認的命名空間就是“/”。你看看你的basepath 與訪問的地址匹配

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved