Невозможно получить частную аннотацию через отражение в совете aspectj - PullRequest
2 голосов
/ 16 июня 2011

У меня есть аннотация, определенная так:

public @interface RestletResourceVariable {
    String name(); 
}

У меня есть рестартер ServerResource, определенный так:

public class QuestionResource extends ServerResource {
    static Logger logger = LoggerFactory.getLogger(QuestionResource.class);

    @RestletResourceVariable(name="questionId")
    public String questionId; 

    @Get("json")
    public JsonRepresentation doGet() {
        logger.info("QuestionResource::doGet()");

        return new JsonRepresentation("{ nil };");
    }

    @Post
    public Representation doPost(Representation entity) throws Exception {
        logger.info("QuestionResource::doPost:" + entity.getText());
        return null;
    }
}

Вот мой аспект:

public aspect RestletResourceVariableAspect { 
    static Logger logger = LoggerFactory.getLogger(RestletResourceVariableAspect.class); 

    pointcut RESTMethods() :
        execution( @org.restlet.resource.Delete * packagename..*(..) ) ||
        execution( @org.restlet.resource.Get    * packagename..*(..) ) || 
        execution( @org.restlet.resource.Post   * packagename..*(..) ) || 
        execution( @org.restlet.resource.Put    * packagename..*(..) ) 
        ;

    before(): RESTMethods() {
        Signature sig = thisJoinPoint.getSignature();

        Object target = thisJoinPoint.getTarget();
        Class<?> c = target.getClass();
        Class<?> cdecl = sig.getDeclaringType(); 

        logger.info("Class name: {} cdecl {}", c.getName(), cdecl.getName());
        logger.info("Sig: {} in class {}", sig.getName(),sig.getDeclaringType().getName());
        Field[] fields = cdecl.getDeclaredFields() ;
        for ( Field field : fields ) {
            logger.info("Field name: {}", field.getName());
            Annotation[] annotations = field.getDeclaredAnnotations();
            logger.info("Annotations {} length {}", annotations, Integer.toString(annotations.length));
            for(Annotation annotation : annotations){

                if(annotation instanceof RestletResourceVariable){
                    RestletResourceVariable myAnnotation = (RestletResourceVariable) annotation;
                    System.out.println("name: " + myAnnotation.name());
                }
            }

        }
    }
}

Я получаю вывод примерно так:

16:22:11.656 [24864323@qtp-6011238-0] INFO  RestletResourceVariableAspect - Class name: QuestionResource cdecl QuestionResource
16:22:11.656 [24864323@qtp-6011238-0] INFO  RestletResourceVariableAspect - Sig: doGet in class QuestionResource
16:22:11.656 [24864323@qtp-6011238-0] INFO  RestletResourceVariableAspect - Field name: logger
16:22:11.656 [24864323@qtp-6011238-0] INFO  RestletResourceVariableAspect - Annotations [] length 0
16:22:11.656 [24864323@qtp-6011238-0] INFO  RestletResourceVariableAspect - Field name: questionId
16:22:11.656 [24864323@qtp-6011238-0] INFO  RestletResourceVariableAspect - Annotations [] length 0
16:22:11.656 [24864323@qtp-6011238-0] INFO  RestletResourceVariableAspect - Field name: ajc$tjp_0
16:22:11.656 [24864323@qtp-6011238-0] INFO  RestletResourceVariableAspect - Annotations [] length 0
16:22:11.656 [24864323@qtp-6011238-0] INFO  RestletResourceVariableAspect - Field name: ajc$tjp_1
16:22:11.656 [24864323@qtp-6011238-0] INFO  RestletResourceVariableAspect - Annotations [] length 0
16:22:11.656 [24864323@qtp-6011238-0] INFO  QuestionResource - QuestionResource::doGet()

Любое руководство о том, что я делаю неправильно? Я хочу найти поля, помеченные аннотацией, чтобы заполнить их по запросу.

1 Ответ

2 голосов
/ 17 июня 2011

Убедитесь, что вы добавили @Retention (RetentionPolicy.RUNTIME) к определению аннотации следующим образом:

@Retention(RetentionPolicy.RUNTIME) 
@Target ({ElementType.FIELD, ElementType.METHOD })
@Inherited
public @interface RestletResourceVariable {
    String name(); 
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...