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

struts2.0-struts2 注解和約定頁面跳轉問題求解

編輯:編程綜合問答
struts2 注解和約定頁面跳轉問題求解

我想從user文件夾下的admin.left.jsp 跳轉至mail 文件夾下的writeMail.jsp 頁面
admin.left.jsp form表單action 為 mail/writeMail
執行Action類
@Namespace("/mail")
@ParentPackage("struts-default")
public class MailAction extends BaseAction {
@Action("writeMail")
public String ReceiverList(){
List list=mailServiceImpl.FindReceiverList();
super.getRequest().put("receiverList", list);
return "success";
}
}
錯誤如下:
There is no Action mapped for namespace [/user/mail] and action name [writeMail] associated with context path [/newoa].

如果我就是想實現這樣的跳轉,要怎麼實現呢?

圖片說明

最佳回答:


跳轉請求action名稱不對

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