posted 12 years ago
Hello friend i am new to spring and i am building registration for employees in my webapplication,
here are the details,
<bean name="/editPersonalDetails.htm" class="com.webaccess.cms.controller.EditPersonalDetailsController">
<property name="sessionForm" value="true"/>
<property name="commandName" value="registerCmd"/>
<property name="formView" value="registration"/>
<property name="successView" value="hello"/>
<property name="userEditService" ref="userEditService"/>
<property name="commandClass" value="com.webaccess.cms.domain.EmployeeBean"/>
</bean>
this is my bean in application-servlet,
and registration.Jsp is as,
and after receiving "/editPersonalDetails.htm" request,
first registration.jsp page is displayed and error is,
Can anybody please tell me what is the problem?
Thank you in advance.
Thanks and Regards,
Sandeep Lokhande.