-
Bug
-
Resolution: Fixed
-
P2
-
1.4.2_06
-
b02
-
generic
-
solaris_9
The regression is in java.beans.Introspector, when it gets the beanInfo for a class, the order of properties in the beanInfo is changed from 142_05 to 142_06. The order in 142_05 is alphabetical. I attached a test case to identify this.
What you need to do is to compile both Test.java and SOAPStruct.java and run java test.Test.
142_05:
65$ java test.Test
0: varFloat
1: varInt
2: varString
142_06:
64$ java test.Test
0: varInt
1: varString
2: varFloat
What you need to do is to compile both Test.java and SOAPStruct.java and run java test.Test.
142_05:
65$ java test.Test
0: varFloat
1: varInt
2: varString
142_06:
64$ java test.Test
0: varInt
1: varString
2: varFloat
- relates to
-
JDK-5063390 backward compatibility problem with jdk1.5 and javabean
- Resolved
-
JDK-4918902 REGRESSION 1.4: PropertyDescriptors do not find the most specific methods
- Closed