how to write the configuration file of struts application
if any one had simple struts application please it to me



how to write the configuration file of struts application if any one had simple struts application ..

Answer / surendra choudhury

//Sample struts-config.xml
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE struts-config PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration
1.1//EN"
"http://jakarta.apache.org/struts/dtds/struts-
config_1_1.dtd">
<struts-config> Form bean Definitions
<form-beans>
<form-bean name="CustomerForm"
type="mybank.example.CustomerForm"/>
<form-bean name="LogonForm"
type="mybank.example.LogonForm"/>
</form-beans> Global Forward Definitions
<global-forwards>
<forward name="logon" path="/logon.jsp"/>
<forward name="logoff" path="/logoff.do"/>
</global-forwards> Action Mappings
<action-mappings>
<action path="/submitDetailForm"
type="mybank.example.CustomerAction"
name="CustomerForm"
scope="request"
validate="true"
input="/CustomerDetailForm.jsp">
<forward name="success"
path="/ThankYou.jsp"
redirect=”true” />
<forward name="failure"
path="/Failure.jsp" />
</action>
<action path=”/logoff” parameter=”/logoff.jsp”
type=”org.apache.struts.action.ForwardAction” />
</action-mappings> Controller Configuration
<controller
processorClass="org.apache.struts.action.RequestProcessor" /
>
<message-resources
parameter="mybank.ApplicationResources"/>
</struts-config> Message Resource Definition

Is This Answer Correct ?    7 Yes 1 No

Post New Answer

More Struts Interview Questions

How is the Struts framworl related to MVC2?

2 Answers   Wipro,


What is struts framework?

0 Answers  


why do we typecast ActionForm into our plain java bean class in Action class? What is the reason?

4 Answers  


Explain the difference between dispatchaction and lookupdispatchaction in struts?

0 Answers  


List the important attribute and elements of action mapping under struts.

0 Answers  


What is difference between spring and struts?

0 Answers  


i have a log in web application .... i want restrict the user for particular no of users what is procedure to develop thus application

2 Answers  


At the point, you should go for struts framework?

0 Answers  


How can I make own ActionServlet? with example

8 Answers   IBM, TCS,


What is interceptor? And life cycle methods of interceptor?

0 Answers  


Where can i get jar file for use the struts-tags in struts2?

2 Answers  


What is actionmapping?

0 Answers  


Categories