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 |
Can you give an overview of how a struts application flows?
What does the term struts mean?
Can a reducer dispatch an action?
Even though Servlets and JSP are web based concepts .wht is the use of using Struts using then
Explain about the process of functioning of the struts program?
Is struts compatible with other java technologies?
why do we use logic tag library in struts?
What is the difference between Jakarta Struts and Apache Struts? Which one is better to use?
What are the components of struts framework?
What is the purpose of @urlvalidator annotation?
what are the disadvantages of MVC architecture
Can you explain struts.properties in struts2?