少 name="xxxForm" 
<form-bean name="xxxForm"
           type="com.ss.tt.xxxForm"/>
</form-beans>

解决方案 »

  1.   

    你要把整个struts-config.xml贴出来。
      

  2.   

    你是不是在xhdt1.jsp里写了<html:form action="">标签,而action属性对应的值并没有配置?struts见到这个标签会先实例化actionFrom对应的action,没有影射就会出400错误
      

  3.   

    但从action上看少name,最好把相关的代码都帖出来!
      

  4.   

    这个ACTION没有被实例化,应该是你的页面中的ACTION="/xxx"写错了吧
      

  5.   

    在struts-config.xml代码:
    //========设置actionForm
    <form-beans >
       <form-bean name="UserregisterActionForm" type="functionbackage.customer.forms.UserregisterActionForm" />
    </form-beans >
    //========设置action===========<action
          attribute="UserregisterActionForm"
          input="/userregister.jsp"
          name="UserregisterActionForm"
          path="/UserregisterAction"
          scope="request"
          type="functionbackage.customer.actions.UserregisterAction" validate="true">
                <forward name="lendmoney" path="/lenmoney.jsp" />//跳转页面
          </action>
    jsp页面:
     <html:form action="/UserregisterAction.do">
    (action="/UserregisterAction.do指action的path)
    在控制器(Action):
    public ActionForward UserregisterAction(ActionMapping mapping, ActionForm form,
    HttpServletRequest request, HttpServletResponse response) 

       return mapping.findForward("lendmoney");
       //配置文件<forward name="lendmoney"名  }
      

  6.   

    web.xml里有没有配置struts容器?