I was having a class MyClass with a static method getmyStaticMethod()
While trying to access this method through EL in my jsp :
${MyClass.myStaticMethod}
It was giving me unable to find the value for "myStaticMethod" in object of the class MyClass is it because the static method being at Class level and the EL looking only at the Object level is not able to find it ????
Thanks in advance. :)