explain the struts-configuration file?
Answers were Sorted based on User's Feedback
Answer / venu
struts-configuration file having the folling componets
1.ActionMappings
2.GlobalForwards
3.GlobalExceptions
4.FormBeans
5.DataSource
6.MessageResources
7.Plugins
8.Controller
| Is This Answer Correct ? | 21 Yes | 2 No |
Answer / zurreyab ahmad
<struts-config>
<data-sources />
<form-beans >
<form-bean name="LoginForm" type="RegisterForm" />
</form-beans>
<global-exceptions />
<global-forwards >
<global-forwards >
<forward name="success" path="/success.jsp"/>
<forward name="failure" path="/failure.jsp"/>
</global-forwards>
<action-mappings >
<action path="/login" type="RegisterAction"
name="LoginForm" scope="request" >
</action>
</action-mappings>
<message-resources
parameter="com.yourcompany.struts.ApplicationResources" />
</struts-config>
</action-mappings>
the controller first goes to action mapping and check the
name of action mapping and action form if same then goes to
action form then check reset method and reset request and
check valideter method and then forward action class
| Is This Answer Correct ? | 7 Yes | 1 No |
How can we handle exceptions thrown by application in Struts2?
What is the purpose of '@customvalidator'?
What is interceptor struts2?
explain method overridding method overloding with examples?
How many instances of servlet usually run in a struts application ?
what is diffrence between Dynaactionform,actionform and Dynavalidateform
Which design pattern is implemented by Struts2 interceptors?
What is the purpose of global-forwards tag in struct-config.xml?
what is the disadvantages of using DynaActionForm in struts framework?
Which configuration files are used in struts?
What is the difference between filters and interceptors ?
What happens when Two users requests for same action class? How the threads are controlled?