Annotation Interface CustomRequestMapping
Custom
RequestMapping
that matches based on one or more CustomRequestCondition
classes.
When building the request mapping info, beans will be created of every CustomRequestCondition
class
added as value.
Supports both type and method-level annotations, and can be used as a meta-annotation for creating your own
custom request mapping annotations. A request must match all conditions before it will be considered.-
Required Element Summary
Modifier and TypeRequired ElementDescriptionClass<? extends CustomRequestCondition>[]
TheCustomRequestCondition
implementations that should be created and against which a request must match before the handler method will be considered.
-
Element Details
-
value
Class<? extends CustomRequestCondition>[] valueTheCustomRequestCondition
implementations that should be created and against which a request must match before the handler method will be considered.
-