I have a Struts2 application that has a few actions that take some time to load (because of heavy db calls). In order to display a wait page I'm using the execAndWait interceptor. The setup of the action looks like this:
<action name="showCustomerHolding" class="showCustomerHoldingAction">
<interceptor-ref name="defaultStack" />
<interceptor-ref name="execAndWait">
<param name="delay">30000</param>
<param name="delaySleepInterval">500</param>
<param name="threadPriority">1</param>
</interceptor-ref>
<result name="success">/WEB-INF/jsp/customerHolding.jsp</result>
</action>
As a test I've put the initial delay to 30 seconds. In this scenario I would expect never to see my wait page. Instead the whole application now seems to freeze for 30 seconds. I've figured out that the reason this happens is that I'm trying to access the session object (provided in the action by implementing the sessionAware interface). To access the session I use the folowing code:
Locale locale = (Locale)session.get(I18nInterceptor.DEFAULT_SESSION_ATTRIBUTE);
As you can see the reason I need the sesssion is to check the current Locale. The whole app freezes on the line above until the inital delay time of execandWait interceptor has run out. I seems like the interceptor has locked the session somehow.
Has anyone else experienced this problem, or do you know a safer way of accessing the session? Would be really thankful for any help on this.
Thanks Fred
logger.debug("BEFORE"); Locale locale = (Locale)session.get(I18nInterceptor.DEFAULT_SESSION_ATTRIBUTE); logger.debug."AFTER");I don't see the AFTER in my log until the delay time has run out. – Fred Feb 11 at 15:18