up vote 0 down vote favorite
share [g+] share [fb]

I am working in 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 returns "input" when validation fails so currently I can target only one jsp page against it.

link|improve this question
feedback

3 Answers

void return types can't return anything

Did you design a work around?

link|improve this answer
feedback

Rich's solution is quite practicable if the logic is applied in the action being called on submit...

public String actionBeingCalledOnSubmit() {
  if(!isFieldAValid()) {
    return "DISPLAY_A";
  }

  if(!isFieldBValid()){
    return "DISPLAY_B";
  }
}
link|improve this answer
feedback

You will need to create custom validation method in your action, return a custom resut:

public void validate() {
  if(!isFieldAValid()) {
    return "DISPLAY_A";
  }

  if(!isFieldBValid()){
    return "DISPLAY_B";
  }
}

Then in your struts.xml you will need to add the custom results:

<result name="DISPLAY_A">/a.jsp</result>
<result name="DISPLAY_B">/b.jsp</result>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown