how to write the configuration file of struts application
if any one had simple struts application please it to me
Answer Posted / 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 View All Answers
What is jakarta struts framework?
Explain struts.devmode?
Explain about tiles?
What configuration changes are required to use Tiles in Struts?
When it’s useful to use IncludeAction?
Can a reducer dispatch an action?
What are the components of struts framework?
What are action classes in struts?
What are action errors and error and what are the consequences they impose?
What do you mean by ognl?
What are the major differences between html tags and strut specific html tags?
Is there a particularly good ide to use with struts?
What are the struts2 error message keys that can come during file uploading process?
What are the 5 constants of action interface?
Are the struts tags xhtml compliant ?