我需要在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
有人可以告诉我们如何解决这个问题吗?