Validation using annotations with two execute methods are applied always

2015-12-17 Thread JOSE L MARTINEZ-AVIAL
Hello, I'm using Struts 2.3.24.1. I have an action that has two execute methods, and it is used by two actions, as follows: Each method has its own validations, defined by annotations at the method level. @Validations(requiredStrings = {

Re: Validation using annotations with two execute methods are applied always

2015-12-17 Thread Adam Brin
You might be better off splitting the two actions into two different classes. As far as I know that's the only way to address the issue. If you have shared logic or fields, you can always put those in a superclass. On Thu, Dec 17, 2015 at 3:28 PM, JOSE L MARTINEZ-AVIAL wrote:

Re: Validation using annotations with two execute methods are applied always

2015-12-17 Thread Łukasz Lenart
What about switching validateAnnotatedMethodOnly? This is going to be default in 2.5 probably https://struts.apache.org/docs/validations-annotation.html (mobile) 17 gru 2015 23:29 "JOSE L MARTINEZ-AVIAL" napisał(a): > Hello, > I'm using Struts 2.3.24.1. I have an action