Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
リスト>のデータをJSPで表示する必要があります。では、JSPでそれを行う方法は?それを行うための最良のアプローチは何でしょうか?例えば;
List<Map> list=new ArrayList<Map>();
マッピングオブジェクトのリスト...mainListにリストオブジェクトを追加します。こんな感じになります。
List<List> mainList=new ArrayList<List>();
前もって感謝します!!!以前の返信非常に感謝しています...
使用する<c:forEach>
<c:forEach>
為にList<List> list
List<List> list
<c:forEach items="list" var="listOuter"> <c:forEach items="listOuter" var="listInner"> </c:forEach> </c:forEach>
こちらもご覧ください