action-validation.xml in struts2 (open different pages when validation fails at different fields in validation.xml) - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T20:21:10Zhttp://stackoverflow.com/feeds/question/828534http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/828534/action-validation-xml-in-struts2-open-different-pages-when-validation-fails-at-d0action-validation.xml in struts2 (open different pages when validation fails at different fields in validation.xml)vky2009-05-06T08:08:15Z2009-10-30T11:00:47Z
<p>Hi All,
I am working on struts2.
I have two fields in my action-validation.xml. I want if validation get fails at first field it will go to some jsp page (say a.jsp) and if validation get fails at second field then it will go to another jsp (say b.jsp).
As it always return "input" when validation fails so currently I can target only one jsp page against it. Please provide solution if possible?
Thanks in advance.</p>
http://stackoverflow.com/questions/828534/action-validation-xml-in-struts2-open-different-pages-when-validation-fails-at-d/830171#830171-1Answer by Rich Kroll for action-validation.xml in struts2 (open different pages when validation fails at different fields in validation.xml)Rich Kroll2009-05-06T15:25:27Z2009-05-06T15:25:27Z<p>You will need to create custom validation method in your action, return a custom resut:</p>
<pre><code>public void validate() {
if(!isFieldAValid()) {
return "DISPLAY_A";
}
if(!isFieldBValid()){
return "DISPLAY_B";
}
}
</code></pre>
<p>Then in your struts.xml you will need to add the custom results:</p>
<pre><code><result name="DISPLAY_A">/a.jsp</result>
<result name="DISPLAY_B">/b.jsp</result>
</code></pre>
http://stackoverflow.com/questions/828534/action-validation-xml-in-struts2-open-different-pages-when-validation-fails-at-d/934483#9344830Answer by Euphy for action-validation.xml in struts2 (open different pages when validation fails at different fields in validation.xml)Euphy2009-06-01T11:43:00Z2009-06-01T11:43:00Z<p>Re Rich's suggestion - a void method can't return a String so validate() can't return anything surely?</p>
http://stackoverflow.com/questions/828534/action-validation-xml-in-struts2-open-different-pages-when-validation-fails-at-d/1103243#11032430Answer by Louis for action-validation.xml in struts2 (open different pages when validation fails at different fields in validation.xml)Louis2009-07-09T11:13:13Z2009-07-09T11:13:13Z<p>How this will work? validate() is a void method, no return allow, how can you return "DISPLAY_A" ?</p>
http://stackoverflow.com/questions/828534/action-validation-xml-in-struts2-open-different-pages-when-validation-fails-at-d/1113341#11133410Answer by harsh for action-validation.xml in struts2 (open different pages when validation fails at different fields in validation.xml)harsh2009-07-11T09:41:42Z2009-07-11T09:41:42Z<p>rich's solution is quiet practicable if the logic is applied in the action being called on submit....</p>
<pre><code>public String actionBeingCalledOnSubmit() {
</code></pre>
<p>if(!isFieldAValid()) {
return "DISPLAY_A";
}</p>
<p>if(!isFieldBValid()){
return "DISPLAY_B";
}
}</p>
http://stackoverflow.com/questions/828534/action-validation-xml-in-struts2-open-different-pages-when-validation-fails-at-d/1649170#16491700Answer by Kris for action-validation.xml in struts2 (open different pages when validation fails at different fields in validation.xml)Kris2009-10-30T11:00:47Z2009-10-30T11:00:47Z<p>void return types can't return anything</p>
<p>Did you design a work around?</p>