Displaying the properties of a List of beans

My servlet passes me an ArrayList of a particular type of bean

sayclass A{

int prop1;

String prop2;

....

//getters and setters

....

}

Each bean-instance represents a table record.

I want to display a table that has rows corresponding to each bean element in theArrayList.

How do I do it using JSTL and expression language (NO SCRIPTLETS) ?

[568 byte] By [av8r1s2flya] at [2007-10-2 5:49:17]
# 1
http://java.sun.com/j2ee/1.4/docs/tutorial-update2/doc/index.htmlLook under chapter 14 for the iterator tags
tolmanka at 2007-7-16 1:58:45 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...