Let just say i have the following java object that I wish to read in my jsp using el:
class A {
Map map = new HashMap();
int count;
String getAttribute(String attrName)
{
return map.get(attrName);
}
String getCount()
{
return count;
}
}
I can call count by doing ${a.count}
But how How do I call the getAttribute using el ?