This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes Struts and the fly likes Action alias: ActionName-alias-validation.xml with annotation Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Frameworks » Struts
Reply Bookmark "Action alias: ActionName-alias-validation.xml with annotation" Watch "Action alias: ActionName-alias-validation.xml with annotation" New topic
Author

Action alias: ActionName-alias-validation.xml with annotation

Radu Virgil
Greenhorn

Joined: Feb 01, 2010
Posts: 2
Hi,

How can I use annotation to implement ActionName-alias-validation?
I have two forms in the page and I want to make separate validation for each form some field for one some fields for the other one.
Now both action methods are validating all fields.

Thanks.
Radu Virgil
Greenhorn

Joined: Feb 01, 2010
Posts: 2
I manage to find the solution

<interceptor-ref name="validation">
<param name="validateAnnotatedMethodOnly">true</param>
<param name="excludeMethods">cancel,execute,reset,input
</param>
</interceptor-ref>
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Action alias: ActionName-alias-validation.xml with annotation
 
Similar Threads
Validators per method
Struts Forms ( html:form )
struts2:Validate specific method in an action(through xxx-validation.xml or Vlidation Annotation)
Validating some extra fields of action form not in my jsp?
What are the features of Struts 2 which prompts someone to opt it as a framework?