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) ?

