Tagged Questions
The valuestack tag has no wiki summary.
6
votes
4answers
11k views
struts2 - understanding the value stack
I have a question regarding the struts2 value stack. Let's say I have an Action class called RegisterAction that has an execute method as follows:
public String execute() {
ValueStack stack = ...
1
vote
1answer
16 views
How data travels in Struts2?
I am trying to understand the path data takes within Struts2, how is data placed on the ValueStack? How can I find out which object is currently present in the ValueStack? What other data can I access ...
1
vote
1answer
897 views
Struts 2 - Accessing different properties on the ValueStack sharing the same name
Struts 2 will resolve all property names during view rendering against the top object in the ValueStack first. But how can one access a property with the same name on the object lower on the stack?
...
0
votes
1answer
35 views
some basic queries regarding value stack in struts 2?
I am new to strut 2 though I have worked on struts 1.2.In one of the pexisting project jsp file I have following code:
<script type="text/javascript">
var relationshipData = { // line1
...
0
votes
1answer
300 views
How does ValueStack in struts2 work?
Consider the following code .
public class SampleAction {
private String[] sampleArray1 = new String[]{"item1","item2","item3"};
private String[] sampleArray2 = new String[]{"a","b","c"};
private ...
0
votes
1answer
764 views
Is the ValueStack life cycle across the application in struts2?
I can set a property on ValueStack in several ways.
ValueStack stack = ActionContext.getContext().getValueStack();
stack.getContext().put("resultDTO",resultDTO); //1. creates a different branch
...