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
What is pojo in struts2?
What is the difference between forwardaction and includeaction?
What are the features of struts?
What is interceptor in Struts2?
What do you know about validation plugin ?
What is the purpose of @typeconversion annotation annotation?
Explain the difference between dispatchaction and lookupdispatchaction in struts?
What are the steps of struts installation?
What design patterns are used in struts?
Why it called struts?
What are the contents on web.xml in struts application ?
What is the default suffix for Struts2 action URI and how can we change it?
Why aren’t the struts tags maintained as part of the jakarta taglibs project ?
What are different ways to create Action classes in Struts2?
What are the Core classes of Struts Framework?