你没有加应用名,因为是在客户端和服务进行通信,
不是服务器内部,如你在目录aa下建的应用
action="/aa/funddemandfind.do"

解决方案 »

  1.   

    要么你写 <html:form method="post" action="/项目名称/funddemandfind.do"> 
    建立jsp时候会自动有2行代码
    <%
    String path = request.getContextPath();
    String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
    %>这2行不是没有用的东西,其实用起来挺方便的
    要么写<html:form method="post" action="<%=basePath %>/funddemandfind.do"> 
      

  2.   

    <action path="/funddemandfind.do"   这句后面的.do不要