How data transfered from one formbean to another formbean?
Answer Posted / 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 |
Post New Answer View All Answers
What is discontinuous strut?
What is the difference between validation.xml and validator-rules.xml files in struts?
What is apache struts framework?
Which design pattern the interceptors in struts2 is based on?
What is the purpose of @conversionerrorfieldvalidator annotation?
Which interceptor is responsible for mapping request parameters to action class Java Bean properties?
Which tag is used to declare constants in struts xml?
What are the life cycle methods of interceptor?
What validate() and reset() method does ?
Explain the difference between dispatchaction and lookupdispatchaction in struts?
What are the struts2 error message keys that can come during file uploading process?
Explain integrate log4j in struts2 application?
What is the role of action class in struts?
Explain about struts dispatch action?
When it’s useful to use IncludeAction?