| Class | Description |
|---|---|
| Param.DEFAULT_RESOLVER |
| Annotation Type | Description |
|---|---|
| Action |
The
Action annotation is used to mark a
method (the action handler) that should be executed
to handle a certain http request |
| ActionUtil |
Mark an method as an action util method.
|
| After |
The
After annotation is used to mark a
method (the after interceptor) that should be executed
after executing controller action method
and before rendering view to response |
| Before |
The
Before annotation is used to mark a
method (the before interceptor) that should be executed
before executing controller action method. |
| Bind |
The
Bind annotation is used to specify a
binding from a group of HTTP parameters to an action
handler method parameter, controller field or
an annotation |
| Catch |
The
Catch annotation is used to mark a
method (the exception interceptor) that should be executed
when there is an exception thrown out during the
action method executing |
| DeleteAction |
The
DeleteAction annotation is used to mark a
method (the action handler) that should be executed
to handle a DELETE http request |
| Finally |
The
Finally annotation is used to mark a
method (the finally interceptor) that should be executed
after view rendered and sent to response |
| GetAction |
The
GetAction annotation is used to mark a
method (the action handler) that should be executed
to handle a GET http request |
| Param |
The
Param annotation is used to specify a
binding of HTTP parameter to an action handler method
parameter |
| PatchAction |
The
PatchAction annotation is used to mark a
method (the action handler) that should be executed
to handle a PATCH http request |
| PostAction |
The
PostAction annotation is used to mark a
method (the action handler) that should be executed
to handle a POST http request. |
| PutAction |
The
PutAction annotation is used to mark a
method (the action handler) that should be executed
to handle a PUT http request |
| Resolve |
The
Bind annotation is used to specify
StringValueResolver that can be applied
to field, parameter or an annotation |
| ResponseContentType |
Mark an action handler shall produce response with media type specified
|
| ResponseStatus |
Mark a certain class so when the implementation framework encountered a
return result of the class, it will automatically set the response status
|
| SessionFree |
Indicate a controller handler method does NOT require
session.
|
| With |
The
With annotation is used to delegate interceptors |
Copyright © 2017. All Rights Reserved.