Community
Participate
Working Groups
The issue stems from the fact that EclipseLink extends the java.util.Properties class with it's own NonSynchronizedProperties class. One methos getProperty(key, defaultValue) was not overridden properly. On the SUN VM and the IBM VM on most OSs this didn't cause a problem as ultimately one of the methods that was overridden was called. However, on the IBM VM on linux, the correct method is not called. Fix: @Override public String getProperty(String key, String defaultValue) { String val = getProperty(key); return (val == null) ? defaultValue : val; }
Setting target and priority. See the following page for details of the meanings of these fields: http://wiki.eclipse.org/EclipseLink/Development/Bugs/Guidelines
>See SVN rev# 7272 for EclipseLink 2.0.1 on 20 May 2010 http://fisheye2.atlassian.com/changelog/eclipselink/?cs=7272
Created attachment 171732 [details] rev 7272: super.getProperty() on java.util.Properties override fails with null on IBM JVM (non-windows OS)
*** Bug 316602 has been marked as a duplicate of this bug. ***
The Eclipselink project has moved to Github: https://github.com/eclipse-ee4j/eclipselink