Annotation Type RequestMappingOverride
-
@Target(METHOD) @Retention(RUNTIME) public @interface RequestMappingOverrideAnnotation allows override existing request mapping, defined by@RequestMappingannotation. It can be used, to set priorities for methods with identical@RequestMappingannotation. Thanks to that, error like java.lang.IllegalStateException: Ambiguous mapping found.., can be avoided. Method with highest priority will be added as handler mapping.
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description java.lang.StringpriorityPropertyName for property, which stores priority value
-