According to the Common Weakness Enumeration,
If two validation forms have the same name, the Struts Validator arbitrarily chooses one of the forms to use for input validation and discards
the other. This decision might not correspond to the programmer’s expectations…
In such a case, it is likely that the two forms should be combined. At the very least, one should be removed.
Noncompliant code example
<form-validation>
<formset>
<form name="BookForm"> ... </form>
<form name="BookForm"> ... </form> <!-- Noncompliant -->
</formset>
</form-validation>
Compliant solution
<form-validation>
<formset>
<form name="BookForm"> ... </form>
</formset>
</form-validation>