aspose file tools
The moose likes Struts and the fly likes Struts 2.0, persist data across requests 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 "Struts 2.0, persist data across requests" Watch "Struts 2.0, persist data across requests" New topic
Author

Struts 2.0, persist data across requests

Deepak Srivastav
Greenhorn

Joined: Jul 18, 2008
Posts: 1
Hello,

I have a class TestAction which has two action methods.

class TestAction {
List<Item> items = new ArrayList<Item>();
// getter and setter methods for items

public String execute(){
//populate items
}

public String modifyItems(){
//modify items on the list
}
}

when I call execute, i populate.
In my next request, i call modifyItems(), and this should modify the item list.

Currently, we are storing the list onto the session in the execute() method and retrieveing in the modifyItems() method.

Is there anything in struts 2.0 using which i can achieve the same?

Regards,
Deepak
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Struts 2.0, persist data across requests
 
Similar Threads
Indexed Properties Example
Populating a list of Objects in Struts2
Struts logic:iterate weirdness
Struts: No getter method for property name problem
parameter variable to action class instance variable