Sharing application class loaders in weblogic

There are several detailed artifacts in the form of ear files in my project. I understand that each of the ears will have its own class loader. Is it possible to tell weblogic to use the same class loader for each of these deployment tools.

What factors should I consider when making changes?

+3
source share
1 answer

The reason each application (EAR) has its own class loader is designed to isolate and independence the application. Suppose you want some common module to be available for all EARs?

( ), 3 :

+3

Source: https://habr.com/ru/post/1745137/


All Articles