特定の URL のすべてのコンテンツを index.jsp ファイルに含める必要があります。
http://hostname:9090/dts/flows?page=1&size=10
タイル フレームワークを使用しています。
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に追加する必要があります。
誰でもこれを修正する方法を教えてもらえますか?