zoukankan      html  css  js  c++  java
  • 错误:Invalid action class configuration that references an unknown class named [XXX]的解决

    问题:

      用http的方式直接调用类,执行完毕后报错误信息Invalid action class configuration that references an unknown class named [XXX]。括号中的xxx为执行的action名。提示说的是没有找到类。

    解决方法:

      先去看了struts.xml,中间已经配置了该action,再对比后发现,是struts.xml中配置的类和写的类没有对应。具体是我action类中写了返回值,而struts.xml中配置的类没有对返回值进行操作。所以只要根据自己需求修改下,让两边对应就行。如下:

    1、有返回值

    action

    public String init(){        
      return "success";
    }

    struts.xml

    <action name="init" class="InitData" method="init">
      <result name="success" type="freemarker">/init.ftl</result>
    </action>

    2、没有返回值

    action

    public void init(){        
      
    }

    struts.xml

    <action name="init" class="InitData" method="init">
    
    </action>
  • 相关阅读:
    053-98
    053-672
    053-675
    1031 Hello World for U (20分)
    1065 A+B and C (64bit) (20分)
    1012 The Best Rank (25分)
    1015 Reversible Primes (20分)
    1013 Battle Over Cities (25分)
    1011 World Cup Betting (20分)
    1004 Counting Leaves (30分)
  • 原文地址:https://www.cnblogs.com/pcheng/p/5315453.html
Copyright © 2011-2022 走看看