On Fri, Dec 10, 2010 at 2:23 PM, Biesbrock, Kevin wrote: > Ah. So is the idea that you *could* have logic in an interceptor that > executes after the action by adding logic after invocation.invoke()? >
Sure, like closing a Hibernate session, for example. The caveat (to me, at least) is that the result has already been rendered by the time you return from the "invoke" call; if you want to do something before rendered you need to implement PreResultListener. Dave