In many places, applications can use Java 5 annotations as an alternative to XML and Java properties configuration. This page serves as a reference for all annotations across the framework.
Action Annotations
Since 2.1, these annotations are provided by the Convention Plugin. Codebehind and Zero Config plugins are deprecated from 2.1 on.
Action annotations are available when the framework scans the classpath for Action classes, rather than specifying individual mappings through XML configuration. See the Convention Plugin page for information on how to set up classpath scanning to allow the use of Action annotations.
Annotation | Description |
---|---|
Group of @Action annotations, maps multiple URLs to the same action | |
Defines the URL of an action | |
Gropup of @InterceptorRef annotations | |
Interceptor, or interceptor stack to be applied to at action | |
Group of @Result annotations | |
Defines a result for an action | |
Set the path of the action URL (used to overwrite the default) | |
Set where the results are located (used to overwrite the default) | |
Set the parent package of the actions (used to overwrite the default) | |
Group of @ExceptionMapping annotations | |
Defines an exception mapping |
Workflow Annotations
Annotation | Description |
---|---|
Defines what method to execute, or result to be returned if there are validation errors |
Interceptor Annotations
To use these annotations, you have to specify the AnnotationWorkflowInterceptor to your interceptor stack.
Annotation | Description |
---|---|
Marks a action method that needs to be executed after the result. | |
Marks a action method that needs to be executed before the main action method. | |
Marks a action method that needs to be executed before the result. |
Validation Annotations
To use annotation-based validation, annotate the class or interface with Validation Annotation.
Annotation | Description |
---|---|
Checks if there are any conversion errors for a field. | |
Checks that a date field has a value within a specified range. | |
Checks that a double field has a value within a specified range. | |
Checks that a field is a valid e-mail address. | |
Validates an expression. | |
Uses an OGNL expression to perform its validator. | |
Checks that a numeric field has a value within a specified range. | |
Validates a regular expression for a field. | |
Checks that a field is non-null. | |
Checks that a String field is not empty. | |
Checks that a String field is of the right length. | |
Checks that a field is a valid URL. | |
Marker annotation for validation at Type level. | |
Used to group validation annotations. | |
Invokes the validation for a property's object type. | |
Use this annotation for your custom validator types. |
Resources
- Validation using Annotations (arsenalist)
Type Conversion Annotations
By default, type conversion for Maps and Collections using generics is directly supported.
In short, instead of specifying the types found in collections and maps as documented in Type Conversion, the collection's generic type is used. By using annotations, an application should be able to avoid using any ClassName-conversion.properties
files.
To use annotation-based type conversion, annotate the class or interface with the Conversion Annotation.
Annotation | Description |
---|---|
Marker annotation for type conversions at Type level. | |
For Collection and Map types: Create the types within the Collection or Map, if null. | |
For Generic types: Specify the element type for Collection types and Map values. | |
For Generic types: Specify the key type for Map keys. | |
For Generic types: Specify the key property name value. | |
Used for class and application wide conversion rules. |
Tiles Annotations
The Tiles Plugin provides it's own set of Annotations. They can be used to keep tiles.xml
short. Instead tiles definitions can be created by annotating actions.
Annotation | Description |
---|---|
TilesDefinition | Represents a <definition> element in tiles.xml |
TilesDefinitions | A list of TilesDefinition Annotations |
TilesPutAttribute | Represents a <put-attribute> element in tiles.xml |
TilesPutListAttribute | Represents a <put-list-attribute> element in tiles.xml |
TilesAddAttribute | Represents a <add-attribute> element in tiles.xml |
TilesAddListAttribute | Represents a <add-list-attribute> element in tiles.xml |
3 Comments
Jan Normann Nielsen
Are there any plans to add the two missing pages to the Namespace and ParentPackage annotations?
Jan Normann Nielsen
Wouldn't it be wise to split the Result Annotation page into two, one for the Result annotation and one for the Results annotation. All other pages describe one annotation only.
Jan Normann Nielsen
All
*Validator
annotations describe atype
attribute that is required but has a default value. This doesn't to make sense – default values are only meaningful for optional properties. Also, thetype
attribute is never used in the examples although it's said to be required.All examples using
*Validator
annotations show the annotations out of context. It's always said that they're method-level annotations, so examples should show the annotations being used on some meaningful method.