On Wed, Feb 15, 2012 at 3:52 PM, Markus Demetz wrote: > to be concrete, I want to call a createTitle() method which is common for > all my actions (extending BaseAction with a default implementation of > createTitle()), but when I use an Interceptor for that and call it after > the action invocation, the JSP has already been rendered. So my question > is, at which point is the JSP rendered? can I do something between? >
Yes, your interceptor can use a PreResultListener to wedge itself in-between the invocation and render. Dave