I'm trying to invoke an action method in my jsp. I know, sounds easy:
<s:set var="key" value="1"/>
<s:set var="heading" value="getHeading(key)"/>
With a method named getHeading in my action, I can trace and see that the method is being called correctly.
However, if my action implements ModelDriven, the action method is no longer being invoked.
I can add a getHeading method to my model class and trace to see that method being invoked but the absence of the method in my model class does not "follow the stack" up to my action class.
To be clear, by "follow[ing] the stack", I'm referring to OGNLs ability to begin at the highest level scope, i.e., Model, and work it's way through Action, Request, Session, Application until it finds a particular method or getter property...as I understand it.
Any idea what's going wrong or where I can continue debugging this? Or is this an expected behavior and the result of me not understanding a key concept?
<logger name="ognl" additivity="true"><level value="all"/><appender-ref ref="ALL"/></logger>theALLreference is aConsoleAppenderwith a min ofTRACEand a max ofFATAL. – Beez Oct 10 '11 at 15:30