row1.jsp, row2.jsp, row3.jsp, ..., row10.jsp
メインの jsp ページに含めたいjsp ファイルがたくさんあります。
ここでの秘訣は、それらがどのように提示されるかをランダム化したいということです。
<%@include file="/index-rows/row1.jspf"%>
<%@include file="/index-rows/row2.jspf"%>
<%@include file="/index-rows/row3.jspf"%>
その他の場合:
<%@include file="/index-rows/row2.jspf"%>
<%@include file="/index-rows/row1.jspf"%>
<%@include file="/index-rows/row3.jspf"%>
次のことを試しましたが、タグ<%= %>
内に aを追加できないことに気付きました。<%@include>
<%
HashMap<String, String> foo = ...some code...
String[] pages = { "row1.jspf", "row2.jspf", "row3.jspf" };
for (String p : pages) {
%><%@include file="/index-rows/<%= p %>"%><%
}
%>
状態: 含まれるファイルは変数を使用しますfoo