Hi,
I have a welcome.jsp (as shown below)
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<html:form action="/Data" method="post" >
</html:form>
</body>
</html>
In the struts config.xml , I have the below entry.
<form-beans>
<form-bean name="dataForm" type="com.forms.DataForm">
</form-bean>
</form-beans>
<action-mappings>
<action path="/Data" type="com.actions.DataAction" name="dataForm">
<forward name="success" path="/Success.jsp"></forward>
</action>
</action-mappings>
The question here is , when i type in the
http://localhost:9080/<webcontext>/welcome.jsp , will the DataForm object be created ?