如何在 JSP 页面上包含来自另一台服务器的动态 JSP
我正在编写一些代码,用于在页面中动态包含 HTML 片段。基本上,我在一台服务器上有课程信息,我希望其他服务器能够通过一行代码包含这些信息。
如果它在同一台服务器上,我会使用这个:
<jsp:include page="coursedescription.jsp?subj=ENGL100" />
但是JSP页面位于不同的服务器上。这是我尝试过的方法,但它不起作用:
<jsp:include page="http://myotherserver.com/courselist.jsp?subj=ENGL" />
How can I include that snippet from the other JSP page, by指定 URL?
I am writing a some code that to dynamically include an HTML snippet in a page. Basically, I have course information on one server, which I want other servers to be able to include with a single line of code.
If it was on the same server, I would use this:
<jsp:include page="coursedescription.jsp?subj=ENGL100" />
But the JSP page is on a different server. This is what I have tried, and it does not work:
<jsp:include page="http://myotherserver.com/courselist.jsp?subj=ENGL" />
How can I include that snippet from the other JSP page, by specifying the URL?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
c:import
标签来执行此操作。另一种方法是使用通用 HTTP 在服务器端获取内容并内联包含结果。you can use
c:import
tag for doing this. The other way is to fetch the content in the server side using commons HTTP and include the result inline.