我正在尝试将控件从应用程序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中的操作可以正常工作。这里有什么问题?提前谢谢!。