将内容(url)包含到jsp中

时间:2012-12-31 07:58:56

标签: java spring jspx

我需要在index.jsp文件中包含特定网址中的所有内容。

http://hostname:9090/dts/flows?page=1&size=10  

我正在使用tile框架。

的index.jsp

<div xmlns:spring="http://www.springframework.org/tags" xmlns:util="urn:jsptagdir:/WEB-INF/tags/util" xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:page="urn:jsptagdir:/WEB-INF/tags/form" xmlns:table="urn:jsptagdir:/WEB-INF/tags/form/fields" version="2.0">
  <jsp:directive.page contentType="text/html;charset=UTF-8" />
  <jsp:output omit-xml-declaration="yes" />
  <spring:message var="app_name" code="application_name" htmlEscape="false" />
  <spring:message var="title" code="welcome_titlepane" arguments="${app_name}" htmlEscape="false" />
  <util:panel id="title" title="${title}">
    <h3>
      <spring:message code="welcome_h3" arguments="${app_name}" />
    </h3>
    <p>
      <spring:message code="welcome_text" />
    </p>
  </util:panel>
</div>

我可以看到include指令为<%@include file="included.jsp" %>

但是我需要将url 'http://hostname:9090/dts/flows?page=1&size=10'的内容添加到index.jspx

有人可以告诉我们如何解决这个问题吗?

1 个答案:

答案 0 :(得分:3)

使用JSTL的<c:import>标记:

  

检索绝对或相对URL并将其内容公开给页面,'var'中的String或'varReader'中的Reader。