如何在 JSP 页面上包含来自另一台服务器的动态 JSP

发布于 2024-09-08 02:17:20 字数 420 浏览 11 评论 0原文

我正在编写一些代码,用于在页面中动态包含 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

爱本泡沫多脆弱 2024-09-15 02:17:20

您可以使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文