转发到struts2中同一个servlet容器中另一个应用程序中的操作

时间:2013-06-21 20:16:08

标签: struts2 forward

我正在尝试将控件从应用程序A中的另一个操作类转发到应用程序B中的操作类。两个应用程序都在同一个servlet容器中运行。这是我写的代码:

    RequestDispatcher rd = ServletActionContext.getServletContext().getContext("/App2").getRequestDispatcher("/newApp.action");
    HttpServletRequest request = ServletActionContext.getRequest();
    request.getSession().setAttribute("commonQuestions", answers);
    HttpServletResponse response = ServletActionContext.getResponse();
    rd.forward(request, response);
    return null;

返回“404-Resource not found”错误。当然,稍微修改相同的代码来访问同一应用程序1中的操作可以正常工作。这里有什么问题?提前谢谢!。

0 个答案:

没有答案