No action instance for path /* could be created(

来源:互联网 发布:java设计模式 csdn 编辑:程序博客网 时间:2024/05/17 23:13

很久没有使用struts了.今天调试一个struts项目的时候,就碰到一个这样的错误:
HTTP Status 500 - No action instance for path /* could be created

真让我很郁闷了半天.这个错误意思是:请求所对应的action的实例无法创建。
以下是我的排错步骤:
1)检查一下配置文件struts-config的问题
例如,某一个action在struts-config.xml的配置如下:
<action
parameter="method"
scope="request"
path="/userAction"
name="userForm"
type="test.struts.action.UserAction"
validate="false">
<forward name="manageplugins" path="/admin/page/pluginsconfig/pluginsconfig.jsp" />
</action>
   检查一下struts-config.xml中action元素属性type 的值与对应的action 类是名称是否一致,路径是否一致

2)检查编写的Action类是否继承struts的基类Action, DispatchAction, LookupDispatchAction
如果没有继承struts的基类或者继承错了,例如:
public class dispatchAction {
 public ActionForward search(ActionMapping mapping, ActionForm form,
   HttpServletRequest request, HttpServletResponse response) throws Exception {
 
  UserForm userForm = (UserForm) form;
  String userName = userForm.getUserName();
  //String password = userForm.getPassword();
  if ("".equals(userName) || userName == null) {
   return mapping.findForward("failure");
  } else {
   return mapping.findForward("success");
  }
 }
也会报这样的错误

3)版本问题
在开发环境中使用的是struts的高版本,在运行环境中使用的是struts的低版本.
如在开发环境中,使用struts1.1以上版本,编写的Action类继承struts的基类DispatchAction.
但在运行环境中部署的是struts低版本的jar包,也会报这样的错误.
这种情况就是很多人说的在一台电脑上运行没问题,但换成了另一台电脑就出问题了.

原创粉丝点击