strutstreews.myActionServlet的错了,应该是struts提供给你的转发器

解决方案 »

  1.   

    我因为处理中文的需要改动了一下,把原来servlet一些方法覆盖了。应该不是这个问题吧?
      

  2.   

    还有我用的weblogic服务器,还有个weblogic.xml.不知道有没有关系。记得我用tomcat可以的阿
      

  3.   


    struts 在这个struts-config.xml文件配置formbean的信息.才符合规范
    初始化web.xml会初始化struts-config.xml
    详细配置可以参看struts的自带的例子.
      

  4.   

    <taglib>
        <taglib-uri>/WEB-INF/struts-bean.tld</taglib-uri>
        <taglib-location>/WEB-INF/struts-bean.tld</taglib-location>
      </taglib>  <taglib>
        <taglib-uri>/WEB-INF/struts-html.tld</taglib-uri>
        <taglib-location>/WEB-INF/struts-html.tld</taglib-location>
      </taglib>  <taglib>
        <taglib-uri>/WEB-INF/struts-logic.tld</taglib-uri>
        <taglib-location>/WEB-INF/struts-logic.tld</taglib-location>
      </taglib>
      

  5.   

    在struts-config.xml文件中配置formbean的信息。看里面配制的formbean,action和jsp有没有对应起来把。
      

  6.   

    <form-beans>
    <form-bean name="hunhefindActionForm" type="hunhefind.hunhefindActionForm" />
    </form-beans>
    <global-forwards>
     <forward name="hunheresult" path="/hunheresult.jsp" />
    </global-forwards>
     <action-mappings>
    <action name="hunhefindActionForm" type="hunhefind.hunhefindAction" validate="false" scope="session" path="/hunhefindAction" />
     </action-mappings>
    看看有错吗?
      

  7.   

    structs=config.xml这个配置文件啊