i am debugging a application using OSGi, i terribly find out that if the Annotation class is missing, the class loader would omit that annotation, if i call the method.getAnnotations(), no exception, but return nothing.

i don't get it, but i do want to know if there is any way to make the JVM throw a Exception. is there any option for starting the JVM?

@Target({ElementType.METHOD}) 
@Retention(RetentionPolicy.RUNTIME) 
@Before 
public @interface Secured { 
   /** Priority **/ public int order() default 0; 
   /** Mapping **/ public String value() default "profile/validate"; 
   /** Required **/ public boolean required() default true; 
   public String role() default "L1"; 
}

Thanks.

link|improve this question

54% accept rate
YES, i am using Felix, now i am not sure it's felix or JVM's probelm. @Target({ElementType.METHOD}) @Retention(RetentionPolicy.RUNTIME) @Before public @interface Secured { /** Priority / public int order() default 0; / Mapping / public String value() default "profile/validate"; / Required **/ public boolean required() default true; public String role() default "L1"; } – Brodie Jan 14 '10 at 8:46
show us how you are calling getAnnotation, and the method are are calling it on. – Bozho Jan 14 '10 at 8:51
1, Use felix bundle classloader load the Class, Class clazz = app.getClassLoader().loadClass(name); 2, Iterate mathods, for(Method method : clazz.getDeclaredMethods()){...} 3, for every method, call, for(Annotation entryRefAnno : method.getAnnotations()){...}, the method defination is: @Entry(value="sayHi") @Secured(role="L1") public void sayHi(Event e){ logger.debug("sayHi"); e.setForward("sample1/sayHi"); } if Secured the annotation class is not imported by the bundle, method.getAnnotations(), return only one Annotation, @Entry. i am using jdk1.6.17, felix 2.0.1, fedora 12 – Brodie Jan 14 '10 at 9:59
well, the answer is JDK omit the annotation by default, it works in that way! – Brodie Jan 27 '10 at 7:35
feedback

2 Answers

is your annotation retained at runtime? that is it have the @Retetntion annotation set to RUNTIME:

@Retention(RUNTIME)
public @interface YourAnnotation
link|improve this answer
feedback

Every annotation has a retention defined to it. Retention basically means, in which contexts should the JVM save the annotation. Different values can be seen here. The default behavior is CLASS retention policy, which means the annotations are in the .class files, but aren't used by the JVM. What you want is RUNTIME, whose meaning is clear I guess. Also, there's a SOURCE policy, for annotations that are only relevant during compile-time.

To set the retention policy, you have to annotate the annotation (meta-meta, anyone?), using @Retention, which you can read more about here.

The Java annotation tutorial has a bit more information about this.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.