How data transfered from one formbean to another formbean?
Answers were Sorted based on User's Feedback
Answer / rakhi
sorry i did not get u. can u please explain once?
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / venkat
hello
ravi
tell me clearly
u explained is struts flow,i think
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / madhukiran`
first copy the form properties into one bean class and then
copy those to the required form in Action class
BeanUtils.copyProperties(Bean,frm1);
BeanUtils.copyProperties(frm2,Bean);
Is This Answer Correct ? | 2 Yes | 1 No |
Answer / ravi
1)first form
public class M extends ActionForm
{
//some code//
}
2)second form bean
public class Maction extends Action
{
//sme code//
M o=(M)form;//calling the first formbean to second form bean
}
Is This Answer Correct ? | 1 Yes | 3 No |
What is the purpose of @doublerangefieldvalidator?
Give an example where struts tiles may be used?
What is Struts Flow?
why we are using vo,dao and dto design patterns in struts framework
Can I have html form property without associated getter and setter formbean methods?
Does struts include its own unit tests?
What is the difference between Jakarta Struts and Apache Struts? Which one is better to use?
How exception handling is provided in struts?
How do you create message resource?
Explain the difference between dispatchaction and lookupdispatchaction in struts?
What is token used for?
How we can install struts?