`

"No action instance for path XXX could be created"

阅读更多

根据报错信息提示:

只写了action的配置信息 并没有创建实际的action类,需要在struts-config.xml下查看(for example):

<action-mappings>
  <action path="/cal"
    type="com.eiok.struts.RegAction"
    name="calForm"
    scope="request"
  >
</action-mappings>

 

<action-mappings>
  <action path="/cal"
    type="com.eiok.struts.RegAction"
    name="calForm"
    scope="request"
  >

</action-mappings>

分享到:
评论

相关推荐

    jsp\No result defined for action and result input.doc

    ### Struts2框架中“No result defined for action and result input”错误解析及解决方法 #### 错误概述 在Struts2框架中开发Web应用程序时,可能会遇到一个名为“No result defined for action and result input...

    一个struts2的例子:彻底解决STRUTS2 错误There is no Action mapped for namespace / and action name login

    前几天在网上下载一个struts2的helloword的例子,那个作者也真够缺德的,搞个错误的程序,害得我查了一天的程序错误。 最后发现竟然是struts.xml被写成啦sturts.xml。 碰见这样的问题先鄙视下提供例子的作者, ...

    struts1项目500常见错误总结

    本文将深入探讨一种常见的500错误——"No action instance for path /Logon could be created",并提供相应的解决策略。 首先,我们要理解这个错误的根本原因。"No action instance for path /Logon could be ...

    HTTP Status 404 - There is no Action

    在Web开发中,尤其是使用基于Java的Web框架如Struts时,开发者可能会遇到一个常见的问题:“HTTP Status 404 - There is no Action mapped for namespace and action name BackMemberGroupAudit”。这个问题通常出现...

    No result defined for action.doc

    在IT领域,尤其是在Web开发中,遇到“No result defined for action”这类错误是常见的问题,尤其当使用Struts2框架时更为突出。此类错误通常指向在控制器(Action)中未正确配置或实现结果集(Result),导致请求...

    -软件工程第一章作业

    第三个异常:“No action instance for path /xxxx could be created”。这个异常意味着Struts无法创建指定路径的Action实例。这可能是因为在struts-config.xml中指定了的Action类在运行时没有被找到。问题可能出在...

    Struts的常见错误和异常.doc

    3. **No action instance for path /xxxx could be created 异常** 这个错误意味着Struts无法实例化`struts-config.xml`中配置的Action类。这可能是由于以下原因: - 类路径问题:确保Action类的`.class`文件位于`...

    Struts常见错误及原因分析.

    #### 三、异常 No action instance for path /xxxx could be created **异常描述**: 此异常意味着在创建指定路径的Action实例时遇到问题。 **可能原因**: 1. **Class文件未放置在类路径中**:编译后的`.class`...

    struts 常见错误

    3. **No action instance for path /xxxx could be created** 这个异常表示无法为给定路径创建Action实例。可能的原因包括: - Action类的`.class`文件不在正确的类路径下,确保编译后的Action类位于`WEB-INF/...

    Strus常见错误及原因分析.doc

    3. **No action instance for path /xxxx could be created** 这个错误表明Struts无法实例化在`struts-config.xml`中配置的action。可能的原因包括: - 编译后的`.class`文件不在正确的类路径下,通常应位于`WEB-...

    Struts常见错误及原因分析

    3. 异常 No action instance for path /xxxx could be created 这个错误意味着无法创建Action实例。首先,确保Action类已正确编译并位于正确的类路径下,如WEB-INF/classes目录。其次,确认Action类继承自org....

    【开发经验】Struts常见错误及原因分析 .doc

    3. 异常`No action instance for path /xxxx could be created` 这个错误可能是因为多种原因,包括找不到编译后的`.class`文件、类路径问题、类名拼写错误或未继承自Struts的`Action`类。确保你的action类位于`WEB-...

    java eclipse 出现 xxx cannot be resolved to a type 错误解决方法

    Java Eclipse 出现 "xxx cannot be resolved to a type" 错误解决方法 Java Eclipse 是一个功能强大且广泛使用的集成开发环境(IDE),但是在使用过程中可能会出现各种错误信息,例如 "xxx cannot be resolved to a...

    jsp常见异常

    No action instance for path /xxxx could be created 该异常表明Struts框架无法创建对应路径的Action实例。这可能是因为Action类不存在,或者编译后的`.class`文件没有被正确放置在Web应用的`WEB-INF/classes`...

    一个struts的action跳转大全

    &lt;action path="/anotherAction" type="somePackage.someOtherActionClass"&gt; name="someForm" input="someOtherJSP.jsp" &lt;forward name="successful" path="someResultJSP.jsp"/&gt; &lt;/action&gt; ``` 这种配置展示...

    Zotero tags(action and tags for zotero)怎么使用

    Zotero tags(action and tags for zotero)怎么使用

    FlexGraphics_V_1.79_D4-XE10.2_Downloadly.ir

    (the last one can be overridden for the implementation of new alignment rules). - ADD: The property TFlexPanel.GridControl moved to the public section and is now available for writing (during the ...

    UiPath高级开发者认证-操作题

    1. TransactionItem datatype should be a String. The process should recover and retry in case of errors in navigation between WorkItems page. One transaction is the action of scraping one web page....

    中文翻译 Action Tubelet Detector for Spatio-Temporal Action Localization 中文版本

    本资源 利用人工+机器 翻译了 Action Tubelet Detector for Spatio-Temporal Action Localization 如有错误,望指出

    SSH错误集锦

    5. “No getter method for property XXX of bean teacher” 这个错误通常发生在 JSP 里要取一个 bean 的属性出来,但这个 bean 并没有这个属性。解决方法是检查 JSP 中某个标签的 property 属性的值。 6. ...

Global site tag (gtag.js) - Google Analytics