I have a Set with list of objects, i want to iterate this set in s:iterator tag in struts 2 and access one of the property of Object. How can i acheive this?
Sample code: class Employee{ String name; String age; .....getters and setters
}
Set empSet = new HashSet; empSet.add( ...some objects)
In Jsp: i want to access employee name
Thanks