Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.

wanted to store object across requests and sessions. Is there an equivalent to servletcontext in AEM?

Avatar

Level 3

I tried to use servletcontext to store global data which can be used across components /requests/sessions.

The data is getting lost when used inside servlet, but when I used the Jspcontext in JSP, it worked.

I am looking for any API to hold the data as long as the instance is up.

I wanted to read data from JCR and made available to all the components so they dont have to read again.

 

Thanks for your help.

venkat

3 Replies

Avatar

Employee Advisor

So you want to store data in the HTTP session of that user?

Avatar

Level 3
I wanted to read the data from JCR and make it available to all the components and Servlets so they dont have to read again.

Avatar

Employee Advisor
you can use the request attributes to make it work, in that way it's not tied to JSPs.