Thanks dhainlin
I've tried to do what you say. My ...-servlet.xml now is like that:
Code:
<!-- Validador y Controlador del formulario para la edicion de Contactos" -->
<bean id="contactoValidator" class="jsp.ContactoValidator"/>
<bean id="editarContactoForm" class="opr.EditarContactoFormController">
<property name="sessionForm"><value>true</value></property>
<property name="commandName"><value>contacto</value></property>
<property name="commandClass"><value>jsp.ContactoCommand</value></property>
<property name="validator"><ref bean="contactoValidator"/></property>
<property name="formView"><value>contactos/editarContacto</value></property>
<property name="successView"><value>redirect:clientes/editarCliente.html</value></property>
<property name="dbManagerArs">
<ref bean="arsTarget"/>
</property>
</bean>
And I get the success view on my Controller with this:
Code:
return new ModelAndView(new RedirectView(getSuccessView()));
But when I execute this action, nothing happends. I get a "Not found page" on my navigator. I can't understand it, because i've all the necessary url mappings, and my Tomcat's log doesn't say me any problem