1

I am unable to understand how parameters go into ValueStack . How the parameters are passed.

what is the use of value stack and ActionContext?

I am having a variable name with getter & setter in my Action class,where will be the values be stored.

Roman C
  • 49,761
  • 33
  • 66
  • 176
coder25
  • 2,363
  • 12
  • 57
  • 104
  • Also, you should accept answers to your questions if you've found them to be useful(See there is a tick there)and also use upvotes. It will help you get more answers. – Rishabh Jun 15 '11 at 07:34

1 Answers1

2

The ActionContext is the context in which an Action is executed. Each context is basically a container of objects an action needs for execution like the session, parameters, locale, etc.

ValueStack - Contains all the application-domain–specific data for the request

Rishabh
  • 3,752
  • 4
  • 47
  • 74