AnnotationParameterFilterIntereptor ignores Model pushed onto the ValueStack
----------------------------------------------------------------------------
Key: WW-3500
URL: https://issues.apache.org/jira/browse/WW-3500
Project: Struts 2
Issue Type: Bug
Components: Core Interceptors
Affects Versions: 2.2.1
Reporter: John Lindal
Instead of directly grabbing the Action, the code should use the top of the
ValueStack. Instead of:
final Object action = invocation.getAction();
it should be:
final Object action = invocation.getStack().peek();
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.