你可以看一下你的Struts-config.xml文件的配置当中
是否有你的这几个form和bean的信息

解决方案 »

  1.   

    这是我的代码
    [code]
       <?xml version="1.0" encoding="ISO-8859-1" ?><!DOCTYPE struts-config PUBLIC
              "-//Apache Software Foundation//DTD Struts Configuration 1.1//EN"
              "http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd"><!--
         This is the Struts configuration file for the "Hello!" sample application
    --><struts-config>
      
        <!-- ======== Form Bean Definitions =================================== -->
        <form-beans>
            <form-bean name="HelloForm" type="/hello.HelloForm"/>
        </form-beans>  <!-- ========== Action Mapping Definitions ============================== -->
      <action-mappings>
        <!-- Say Hello! -->
        <action    path      = "/HelloWorld"
                   type      = "hello.HelloAction"
                   name      = "HelloForm"
                   scope     = "request"
                   validate  = "true"
                   input     = "/index.jsp"
         >
            <forward name="SayHello" path="/index.jsp" />
        </action>
      </action-mappings>
        <!-- ========== Message Resources Definitions =========================== -->  <message-resources parameter="hello.application"/></struts-config>[/code]里面有HelloForm类阿,但为什么就是找不到呢?还有其余的两个也找不到 真急死我了