你看看struts-config.xml里面配置的healthexam.jsp路径是不是正确

解决方案 »

  1.   


    JSP路径变了,而你没改struts-config.xml中的路径,所以请求找不到原来的JSP
      

  2.   

    你把xmlObj.open("get","healthExamDealPages.do?propertyData="+propertyData+"&property="+property+"&type="+1,true); 
    改成xmlObj.open("get","/你的工程名/healthExamDealPages.do?propertyData="+propertyData+"&property="+property+"&type="+1,true); 
    这里用绝对路径.
      

  3.   

    楼上的正解
    还有个方法:
    改成xmlObj.open("get","../healthExamDealPages.do?propertyData="+propertyData+"&property="+property+"&type="+1,true);