Multiple choice technology platforms and products

What Classloaders should be used for an application to use classes available in its deployment unit and not the ones available in server CLASSPATH?

  1. System

  2. Bootstrap

  3. Internal

  4. Filtering

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

Filtering classloader allows applications to preferentially load classes from their own deployment unit rather than from the server's CLASSPATH, preventing conflicts and ensuring application-specific versions are used. System and Bootstrap classloaders delegate to parent classloaders, while Internal is not a standard WebLogic classloader type.