Community
Participate
Working Groups
The following code in SDODataFactoryDelegate can cause an infinte loop in cases where aClassLoader == aClassLoader.getParent(). // check the hierarchy to see if the interface loader is a parent of the context loader while (null != parentLoader && !loadersAreRelated) { if (parentLoader == interfaceLoader) { loadersAreRelated = true; } parentLoader = contextLoader.getParent(); }
Created attachment 175786 [details] SDO - Fix
Now check to see if the parent class loader is null or the same as the current class loader. Fixed checked into 2.1.1 at rev: 7964 Fixed checked into trunk at rev: 7965 Code reviewed by David McCann
The Eclipselink project has moved to Github: https://github.com/eclipse-ee4j/eclipselink