This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes Struts and the fly likes some basic queries regarding value stack in struts 2? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Frameworks » Struts
Reply Bookmark "some basic queries regarding value stack in struts 2?" Watch "some basic queries regarding value stack in struts 2?" New topic
Author

some basic queries regarding value stack in struts 2?

scott miles
Ranch Hand

Joined: Jun 16, 2011
Posts: 70

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:

Request is coming CustomerRelationAction.java which has method getCustomerRelations() and getRelationId().

here are the questions :-
1.
I put breakpoint inside method getCustomerRelations().i see flow is coming four time inside this method. Two times at line 3 and another two times at line 4. As per my understanding flow should come only 1 time i.e at line 3. Once it completes getCustomerRelations at line 3 , should not put its value in value stack so that it can refer to it nextime it is refered (like it is being reffered at line 14 again)?

2.
getCustomerRelations() method returns the list of CustomerRelationData objects where CustomerRelationData class also contains the getRelationId() method.Now at line 5 we are refering value="relationId at line 5. On Which object(CustomerRelationAction.java or CustomerRelationData), getRelationId() method will be called? even i am not sure will the list object CustomerRelationData will be present on value stack or not?If yes at which line it will be put in value stack?

3.
Now the iterator completes at line 6.After that,now i refer the code <s:property value="relationId" /> again, On Which object(CustomerRelationAction.java or CustomerRelationData), getRelationId() method will be called?


posted at http://stackoverflow.com/questions/8930873/some-basic-queries-regarding-value-stack-in-struts-2 too but did not get any reply as of now.
Mohana Rao Sv
Ranch Hand

Joined: Aug 01, 2007
Posts: 485

To see the data in the value stack put your project development environment and use the tag in the jsp


ocjp 6 — Feeding a person with food is a great thing in this world. Feeding the same person by transferring the knowledge is far more better thing. The reason is the amount of satisfaction which we get through food is of only one minute or two. But the satisfaction which we can get through the knowledge is of life long.
scott miles
Ranch Hand

Joined: Jun 16, 2011
Posts: 70
Mohan Rao Sv wrote:To see the data in the value stack put your project development environment and use the tag in the jsp


Thanks for giving valuable information. But as soon as i do the above settings i see below error on web page




Do i need to do some other other setting too for this? i am putting <s:debug /> tag after var relationshipData got evaluated i.e after }(see below line 6)
Mohana Rao Sv
Ranch Hand

Joined: Aug 01, 2007
Posts: 485

Put this tag in form <s:debug/> or

http://localhost:8080/customersupport/yourAction.action?debug=xml

This will print the all the data in the valueStack.
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: some basic queries regarding value stack in struts 2?
 
Similar Threads
How to check value in list using s:if
A diffrent type of checkbox problem
Struts 2 iterating enums
Dynamic radio button problem
Loop in JSP with Struts