This repository has been archived by the owner on May 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 551
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleaned up the way the classloaders are setup at startup by removing …
…duplicate logic and responsibilities between the start and base components. Before this change the following classloader hierarchy was setup: 1) the "application" classloader for the "start" component 2) one "native lib" classloader for the "base" component 3) one "native lib" classloader for the all the other (non "base") framework/application/specialpurpose/hot-deploy components 4) one "web app" classloader for each of the webapplications After this commit the hierarchy is simplified by merging #2 and #3: a) the "application" classloader for the "start" component b) one "native lib" classloader for the all the framework/application/specialpurpose/hot-deploy components (including the "base" component) c) one "web app" classloader for each of the webapplications This has been achieved by merging the code that was setting up classloader #2 in the start component (for the "base" component) with the code that was setting up the classloader #3 in the base component: now all the code is in the start component. git-svn-id: https://svn.apache.org/repos/asf/ofbiz/trunk@1633182 13f79535-47bb-0310-9956-ffa450edef68
- Loading branch information
Showing
5 changed files
with
127 additions
and
131 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters