| Author |
iterate problem in struts2
|
Hrishikesh Maluskar
Ranch Hand
Joined: Jun 19, 2008
Posts: 114
|
|
i am not able to iterate myList. Its not showing any value in struts2.
Nothing is getting displayed on line 99.
|
SCJP 1.5
www.licexpadvice.com
|
 |
David Newton
Author
Rancher
Joined: Sep 29, 2008
Posts: 12617
|
posted

0
|
Please include only relevant sections of code and configuration; extraneous information just clouds the issue.
"myList" is not exposed through the action, hence is not available in the JSP.
|
 |
David Newton
Author
Rancher
Joined: Sep 29, 2008
Posts: 12617
|
posted

0
|
|
Also, while it's very difficult to read and discover, your HTML is malformed.
|
 |
Hrishikesh Maluskar
Ranch Hand
Joined: Jun 19, 2008
Posts: 114
|
|
struts.xml entry is as follows. How to expose myList through action.
SearchFlats.jsp
Traverse.java
User.java
|
 |
Ankit Garg
Saloon Keeper
Joined: Aug 03, 2008
Posts: 9189
|
|
Hrishikesh Maluskar wrote:How to expose myList through action
Create a getter method for myList in your Traverse class i.e. add this method to your Traverse class
|
SCJP 6 | SCWCD 5 | Javaranch SCJP FAQ | SCWCD Links
|
 |
Hrishikesh Maluskar
Ranch Hand
Joined: Jun 19, 2008
Posts: 114
|
|
thanks , i am able to display values on the JSP.
Is there any other method to display the values from arraylist without using iterator.
|
 |
David Newton
Author
Rancher
Joined: Sep 29, 2008
Posts: 12617
|
posted

0
|
You can use JSTL's <c:forEach> tag.
Or a scriptlet.
|
 |
 |
|
|
subject: iterate problem in struts2
|
|
|