I am new to Struts 2. I am studying it from the book Struts2 In Action. I am having difficulty in understanding some concepts in OGNL which are as follows-
We know that
params
interceptor moves the data from the request parameters to the action object inValueStack
. Now while reading, I came upon a line that says- "The tricky part of the job is mapping the name of the parameter to an actual property on theValueStack
. This is where OGNL comes in. Theparams
interceptor interprets the request parameter name as an OGNL expression to locate the correct destination property on the ValueStack".Question 1) Here, what does "interprets" mean? Is it that params interceptor translates the request parameter into some OGNL expression and then OGNL expression provides mapping to the properties in ValueStack OR does it mean something else?
When result start its rendering process, the Struts 2 tags retrieve data from the ValueStack by referencing specific values with OGNL expressions.
Question 2) So the tags take OGNL expressions, but how is the data being moved? Earlier,
params
interceptor was the one that moved the data but now there is noparams
interceptor. So how is the data being moved?