life cycle of struts?
Answer Posted / manohar reddy. vummadi
From Jsp page the controller looks into <form>tag with that
it enters into the web.xml, in web.xml it checks the <url-
pattern> tag, and it maps with <servlet-name> tag in
<servlet-mapping> tag, again it checks with <servlet-name>
which is there in <servlet> tag, it looks for corresponding
<servlet-class>.The Controller goes in strus-config.xml
from the it controller checks with the (req name) both in
<action> and <form-bean> if it is matching it will look
into the FormBean class.In FormBean class we have to write
setters and getters for the form input fields which are
there in Jsp page.Then the req is forwadard to Action
class. In Action class it will do some business logic based
on the requirement.
| Is This Answer Correct ? | 19 Yes | 8 No |
Post New Answer View All Answers
Describe the two types of formbeans.
Explain the core end goal while using java struts?
What is role of action class?
What is front controller in struts?
Can a reducer dispatch an action?
How does struts2 token work?
Explain struts.devmode?
What is token used for?
Give an example of validates method used to avoid errors.
How we can install struts?
What are the applications of struts?
Lists the bundled validators in struts?
Which components are available using actioncontext map?
What is actionmapping?
What is dispatch action class?