vote up 0 vote down star

I was wondering if I can capture the result of an action after the result returns and the JSP is rendered. I want to be able to take the entire result (generated HTML) and push it into memcached so I can bring it via Nginx with-out hitting the application server. Any ideas?

PS: I know I can run the interceptor after the action executes but before the result returns and the JSP is rendered, but not after the JSP is rendered.

flag

2 Answers

vote up 0 vote down

Read this article - http://struts.apache.org/2.0.6/docs/interceptors.html

SUMMARY:When you request a resource that maps to an "action", the framework invokes the Action object. But, before the Action is executed, the invocation can be intercepted by another object. After the Action executes, the invocation could be intercepted again. Unsurprisingly, we call these objects "Interceptors."

link|flag
What you've pointed at lets me intercept(), ie, before its executed, or add a PreResultListener, which, according to the docs, says: "If you need to work with the final Result object before it is executed..." which means the JSP has not been rendered. I need to have access to the entire generated HTML after the action's result picks up a JSP and renders it, not before. Consider this: Client -> Request -> Dispatch -> Action -> Result -> JSP render -> HTML -> Client I want: Client -> Request -> Dispatch -> Action -> Result -> JSP render -> HTML -> *MY CODE* -> Client – Hisham Aug 23 at 15:15
vote up 0 vote down

I haven't found a way to do this inside of struts2, your best bet it to create a servlet Filter and have it modify the OutputStream.

http://onjava.com/pub/a/onjava/2003/11/19/filters.html

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.