Java. , - @Target. , , . @Target ElementType, .
Java 6, ElementType :
ANNOTATION_TYPE, CONSTRUCTOR, FIELD, LOCAL_VARIABLE, METHOD, PACKAGE, PARAMETERAndTYPE
In your example, @RequestMappingthey @ResponseBodyare level annotations METHOD, although they are not applied in the same place (one before the method area modifier and one after it), but @RequestParama PARAMETERlevel annotations.
source
share