public class MyAction extends ActionSupport
{
public String getMyValue()
{
return "SomeText";
}
...
}
I have this MyAction
class. Now, the question is that when I refer myValue
in my JSP page using OGNL, will it create the myValue
property on ValueStack
, or will it just call the getter method?