How is policy defined in terms of classloader of an API?
How is policy defined in terms of classloader of an API?
Classloader isolation exists between the application, the runtime, connectors, and policies to ensure that each component manages its dependencies independently and avoids class conflicts. This helps maintain modularity and prevent any potential issues that could arise from different parts of the system using the same classes or resources.
Policies at the API level have classloader isolation. This means that classes and resources used by an API-level policy are loaded within the classloader context of that API instance. This isolation helps prevent class conflicts and allows each API to manage its dependencies independently. So the answer is B as the classloader isolation exists between the application, the runtime, connectors and policies.
The correct answer is B. Classloader isolation exists between the application, the runtime and connectors, and policies.