i am using Struts2. I have a dialog box with a list of persons that is update through the “search_users” action. Next to this list i have a form that you can use to add another person by calling the “add_user” action when the form is submitted.
What i’m trying to do is that, once the add_user action is performed, the list gets updated using the “search_user” action.
I tried using the result type “redirect” in the struts.xml like this:
<action name="search_users" class="org.apache.struts.gestion_edt.controller.adm_proyectos.BLSubequipo" method="searchUsers">
<result name="success">list.jsp</result>
</action>
<action name="add_user" class="org.apache.struts.gestion_edt.controller.adm_proyectos.BLTipoEntregable" method="addUser">
<result name="success" type="redirectAction">search_users</result>
</action>
But that doesn’t work. What am i doing wrong? Is there something i should add to the struts.xml file that i’m not aware of?
This is the error mesage i get:
"Caused by: There is no result type defined for type 'redirect-action' mapped with name 'success'. Did you mean 'redirectAction'? - result - file:/.../struts.xml:59:44
at ..."
Current Configuration:
As per the documentation correct format is: