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.
So what is standard approach of Struts framework to add dynamically some properties to the FormBean? My FormBean has "skills" properties which is List! I have "Add Skill" button on my form which I want to add one element to this form! The problem is that each time I redirect to the page constructor is called for my FormBean (which is logical as it's lifecycle is one request) and I can't add those skills as the next time Struts will seek for my added skills property it won't find it as it is recreated on each construction of this FormBean! How can I make the FormBean remember it's collection? Also how do I fill up FormBean before it shows up with some data from my persistence layer?
-----<br />Programmers are tools to convert cofein into code.