在Struts 1.2中使用mapping.findForward进行转发

时间:2013-07-16 12:26:38

标签: javascript struts-1

public class MyAction extends Action
{   
    public ActionForward execute(ActionMapping mapping, ActionForm form,HttpServletRequest request, HttpServletResponse response)throws Exception {

        String status="success";
        HttpSession session = request.getSession(true);
        System.out.println("My Action---setting key value");
        request.getSession().setAttribute("key1","check");

        //response.sendRedirect("http://localhost:9080/FamiliarPortal/jsp/inicio.jsp");
        return mapping.findForward(status); 

    }
}

Struts-config.xml中,添加以下内容:

<action path="/myAction" type="iusa.ubicacel.actions.MyAction" validate="false" >
         <forward name="success" path="/jsp/inicio.jsp"/>       
</action>

web.xml中,添加以下内容:

<servlet>
        <servlet-name>GetFAP</servlet-name>
        <servlet-class>iusa.ubicacel.actions.map.GetFAP</servlet-class>
    </servlet>
  <servlet-mapping>
    <servlet-name>action</servlet-name>
    <url-pattern>*.do</url-pattern>
  </servlet-mapping>
<servlet-mapping>
        <servlet-name>GetFAP</servlet-name>
        <url-pattern>/GetFAP</url-pattern>
</servlet-mapping>

inicio.jsp中,添加以下内容:

<BODY onload="requestXML('<%=reqURL %>');">

<table border="0" cellspacing="0" cellpadding="0" align="center">
    <tr>
        <td align="center" valign="middle">
            <div id="mapdiv" style="width: 1000px; height:700px"></div> 
        </td>
    </tr>
</table>
</BODY>

函数requestXML如下:

function requestXML(reqURL) 
{   
    alert("calling requestXML"+reqURL);
    var url = "../GetFAP?requestURL=" + reqURL;
    alert("calling requestXML"+url);
    xmlhttpUbi = FAPXMLHttpRequest();
    xmlhttpUbi.open("POST", url, true); // async
    alert("after calling");
    xmlhttpUbi.onreadystatechange = obtainFAPLocation;
    xmlhttpUbi.send(null);
}

上面的代码在使用mapping.findForward时没有调用GetFAP servlet。但是当我使用response.sendRedirect("entire jsp path")时,它正在调用servlet。

有谁能告诉我这里我做错了什么?

1 个答案:

答案 0 :(得分:1)

您使用的是相对网址而不是绝对网址。

直接呈现JSP时,../GetFAP映射有效,因为必须/jsp目录向上移动一级。 1

当您从某个操作渲染JSP时,您正在从操作的路径向上移动一个级别,即,URL中不再有/jsp目录向上移动

这是使用相对路径可能是一个坏主意的众多原因之一。


1 JSP文件应位于WEB-INF目录中,以避免直接访问客户端。