私は jxls 1.0.5 をしばらく使用してきましたが、つい最近、2.2.5 に移行する必要があることがわかりました。
jxls 1.0.5 では、ステートメントを別のステートメント内に埋め込むことができます。
<jx:forEach items="${homeDwellers}" var="homeDweller">
<jx:forEach items="${homeDweller.chores}" var="chore">
</jx:forEach>
</jx:forEach>
これは、jx:each のコメントのみを入力している 2.2.5 でどのように行われますか?
A1: jx:each(items="homeDwellers" var="homeDweller" lastCell="B3")
A2: jx:each(items="homeDweller.chores" var="chore" lastCell="B2")
??