Changeset 7194
- Timestamp:
- Aug 30, 2016, 8:40:51 AM (6 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/core/net/sf/basedb/util/JarClassLoader.java
r7192 r7194 241 241 } 242 242 243 @Override 244 public String toString() 245 { 246 return super.toString() + "[" + mainJarFile + "]"; 247 } 248 243 249 /* 244 250 From the ClassLoader class … … 369 375 } 370 376 371 // 5. Delegate to parent class loader if it hasn't been done 372 if (c == null && !delegateFirst) 373 { 374 c = loadClassInternal(parent, name); 375 if (log.isDebugEnabled()) log.debug("parent class (" + name + "): " + c); 376 } 377 378 // 6. Side-load from proxied JAR files (eg. other extensions) 377 // 5. Side-load from proxied JAR files (eg. other extensions) 379 378 Iterator<JarClassLoaderProxy> it = proxyLoaders.iterator(); 380 379 while (c == null && it.hasNext()) … … 383 382 c = proxyLoader.findClass(name); 384 383 if (log.isDebugEnabled()) log.debug("proxy class (" + proxyLoader.jarPath + "; " + name + "): " + c); 384 } 385 386 // 6. Delegate to parent class loader if it hasn't been done 387 if (c == null && !delegateFirst) 388 { 389 c = loadClassInternal(parent, name); 390 if (log.isDebugEnabled()) log.debug("parent class (" + name + "): " + c); 385 391 } 386 392 -
trunk/src/test/data/JarPluginManifest.txt
r6970 r7194 1 1 Class-Path: ../../lib/dist/AffxFusion.jar 2 ../../lib/dist/hibernate-core- 4.3.9.Final.jar2 ../../lib/dist/hibernate-core-5.0.7.Final.jar
Note: See TracChangeset
for help on using the changeset viewer.