我有 2 台机器在局域网中运行 tomcat。
我可以从一台机器上的jsp调用另一台机器上的另一个jsp页面吗
我已经尝试如下:
<%
RequestDispatcher rd=application.getRequestDispatcher("http://10.44.111.149:8080/stud/sample.jsp");
RequestDispatcher rd=application.getRequestDispatcher("/index.jsp");
rd.include(request,response);
%>
但它给了我以下错误:
java.lang.IllegalArgumentException: Path http://10.44.111.149:8080/stud/sample.jsp does not start with a "/" character
有没有办法做到这一点。