org.apache.struts2.views.jsp
Class IteratorStatusjava.lang.Object org.apache.struts2.views.jsp.IteratorStatus
The iterator tag can export an IteratorStatus object so that one can get information about the status of the iteration, such as:
- index: current iteration index, starts on 0 and increments in one on every iteration
- count: iterations so far, starts on 1. count is always index + 1
- first: true if index == 0
- even: true if (index + 1) % 2 == 0
- last: true if current iteration is the last iteration
- odd: true if (index + 1) % 2 == 1
Example
<s:iterator status="status" value='%{0, 1}'> Index: <s:property value="%{#status.index}" /> <br /> Count: <s:property value="%{#status.count}" /> <br /> </s:iterator>
will print
Index: 0 Count: 1 Index: 1 Count: 2
'JAVA & Open Framework' 카테고리의 다른 글
[펌] Tortoise SVN 설치 및 기본사용법 (0) | 2013.10.01 |
---|---|
[펌] 자바의 다형성? List list = new ArrayList() (0) | 2013.09.14 |
Struts에서의 i18n(Internationalization) (0) | 2013.08.21 |
컴파일시 class 파일의 크기가 이상하게 작은 경우 (0) | 2013.07.09 |
[펌] IT용어중 POC, Pilot, BMT의 업계에서 통용되는 의미에 대한 정리 (0) | 2013.07.08 |