0

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

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

我正在使用瓷砖框架。

索引.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 file="included.jsp" %>

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

谁能告诉如何解决这个问题?

4

1 回答 1

3

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

检索绝对或相对 URL,并将其内容公开给页面、“var”中的字符串或“varReader”中的阅读器。

于 2012-12-31T08:05:37.737 回答