浏览 2968 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2009-05-03
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包,也会报这样的错误. 这种情况就是很多人说的在一台电脑上运行没问题,但换成了另一台电脑就出问题了. 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |