• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Liutauras Vilda
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

ValueStack Scope

 
Ranch Hand
Posts: 127
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all,

I have a quick question regarding the ValueStack in S2. Does it have the Request scope or Session scope? If I put an object to the valuestack what will be its' lifetime?

Regards,
Murat
 
Ranch Hand
Posts: 485
Eclipse IDE Firefox Browser Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
ValueStack devided into ObjectStack and ContextMap

ObjectStack having objects sending from Action.

Context Map having request, parameters, session, attr, application.

The objects will nullified once the Action execution is done. This is done by making ActionContext = null.

ActionContext is having both ValueStack and ContextMap values.

enjoy coding,
Mohan.
 
Murat Balkan
Ranch Hand
Posts: 127
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
Thanks for the answer.
So I should ask the question as when is the ObjectStack reset? I guess this within the request scope. In the second call of the same action, the previous results will not be available.
Am I right?

Thanks,

 
Mohana Rao Sv
Ranch Hand
Posts: 485
Eclipse IDE Firefox Browser Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
No, Object stack is part of valuestack not part of request if you understand my above point you shouldn't ask this question again. StrutsPrepareAndExecute filter will take care of clearing Objects. If the action execution is done it's clear all the data.
 
There are no more "hours", it's centi-days. They say it's better, but this tiny ad says it's stupid:
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic