-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
8u151
-
x86_64
-
linux
ADDITIONAL SYSTEM INFORMATION :
Picked up _JAVA_OPTIONS: -Dawt.useSystemAAFontSettings=gasp
java version "1.8.0_151"
Java(TM) SE Runtime Environment (build 1.8.0_151-b12)
Java HotSpot(TM) 64-Bit Server VM (build 25.151-b12, mixed mode)
A DESCRIPTION OF THE PROBLEM :
Class.getDeclaredAnnotations sometimes presents annotations parameters in different order when executing the following program
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
1. Compile the program
2. Run it using Oracle HotSpot java
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
Annotations parameters always in the same order.
ACTUAL -
Sometimes A(name=A, namespace=B), sometimes A(namespace=B, name=A).
---------- BEGIN SOURCE ----------
@Retention(RUNTIME)
public @interface A {
String name() default "A";
String namespace() default "B" ;
}
@A()
public class B {
public static void main(String[] args) {
for(Annotation a : B.class.getDeclaredAnnotations()) {
System.out.println(a);
}
}
}
---------- END SOURCE ----------
FREQUENCY : often
Picked up _JAVA_OPTIONS: -Dawt.useSystemAAFontSettings=gasp
java version "1.8.0_151"
Java(TM) SE Runtime Environment (build 1.8.0_151-b12)
Java HotSpot(TM) 64-Bit Server VM (build 25.151-b12, mixed mode)
A DESCRIPTION OF THE PROBLEM :
Class.getDeclaredAnnotations sometimes presents annotations parameters in different order when executing the following program
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
1. Compile the program
2. Run it using Oracle HotSpot java
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
Annotations parameters always in the same order.
ACTUAL -
Sometimes A(name=A, namespace=B), sometimes A(namespace=B, name=A).
---------- BEGIN SOURCE ----------
@Retention(RUNTIME)
public @interface A {
String name() default "A";
String namespace() default "B" ;
}
@A()
public class B {
public static void main(String[] args) {
for(Annotation a : B.class.getDeclaredAnnotations()) {
System.out.println(a);
}
}
}
---------- END SOURCE ----------
FREQUENCY : often
- duplicates
-
JDK-8025924 (reflect) unpredictable order of result of getAnnotations
-
- Open
-