Error formatting macro: snippet: java.lang.NullPointerException

Usage

Error formatting macro: snippet: java.lang.NullPointerException

Parameters

Error formatting macro: snippet: java.lang.NullPointerException

Examples

An Annotated Interface

  • Mark the interface with @Validation()
  • Apply standard or custom annoations at method level
Error formatting macro: snippet: java.lang.NullPointerException

An Annotated Class

Error formatting macro: snippet: java.lang.NullPointerException

When multiple methods are used to map different actions on the same class, and one of them is annotated with @Validations, those validators will be triggered for all the actions, unless they are annotated with @SkipValidation or validateAnnotatedMethodOnly is set to true in the "validation" interceptor, like:

<interceptor-ref name="validation">
    <param name="validateAnnotatedMethodOnly">true</param>
    <param name="excludeMethods">input,back,cancel,browse</param>
</interceptor-ref>
  • No labels

2 Comments

  1. This annotation only has one parameter, namely validations. Examples should also show usage of this.

  2. I think that it should tell that the validations are applied to all the methods of the action, unless a method was annotated with @SkipValidation...and why.