Re: Opting action method back into validation

2020-12-09 Thread Lukasz Lenart
wt., 8 gru 2020 o 12:39 Paul Zepernick napisał(a): > > It is an existing project that has hundreds of action classes and is > currently configured by the struts rest plug-in to ignore the show method for > validation. I know I can update the configuration to remove the exclusion, > but many of

Re: Opting action method back into validation

2020-12-08 Thread Paul Zepernick
It is an existing project that has hundreds of action classes and is currently configured by the struts rest plug-in to ignore the show method for validation. I know I can update the configuration to remove the exclusion, but many of these actions also have a validate() implementation which wou

Re: Opting action method back into validation

2020-12-07 Thread Lukasz Lenart
pon., 7 gru 2020 o 15:24 Paul Zepernick napisał(a): > Is there any way to take a method that has been excluded from validation > in the configuration and turn it back on for a single action? For example, > I am using the REST plugin which excludes the show() method from the > validation. 99% of